## Delete saved logo queries by ID `brand_protection.logos.delete(strlogo_id, LogoDeleteParams**kwargs)` **delete** `/accounts/{account_id}/brand-protection/logos/{logo_id}` Return a success message after deleting saved logo queries by ID ### Parameters - `account_id: str` - `logo_id: str` ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) client.brand_protection.logos.delete( logo_id="x", account_id="x", ) ```