def delete_log_entry(
    entry: str,
    id: int,
    api_key: Optional[str] = None,
) -> Dict[str, str]:

source code

Deletes an entry from a log.

Arguments:

  • entry - Name of the entries to delete from a given log.
  • id - ID of the log to delete an entry 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.