def delete_log_fields(
    *,
    field: str,
    logs: Optional[Union[int, unify.Log, List[Union[int, unify.Log]]]] = None,
    project: Optional[str] = None,
    api_key: Optional[str] = None,
) -> Dict[str, str]:

source code

Deletes an entry from a log.

Arguments:

  • field - Name of the field to delete from the given logs.
  • logs - log(s) to delete entries from.
  • project - Name of the project to delete logs from.
  • api_key - If specified, unify API key to be used. Defaults to the value in the

Returns:

A message indicating whether the log entries were successfully deleted.