def delete_dataset_entry(
    name: str,
    id: int,
    api_key: Optional[str] = None,
) -> Dict[str, Union[str, List[int]]]:

source code

Deletes data from a dataset by id, and returns a list of ids and values for each of those, split by those which were deleted and those which were not present.

Arguments:

  • name - The name of the dataset to delete the data from.
  • id - Entry id
  • api_key - If specified, unify API key to be used. Defaults to the value in the

Returns:

A dict containing the info, and the ids for all entries deleted, split by those which were deleted and those which were not present.