## Delete saved logo queries by ID `client.BrandProtection.Logos.Delete(ctx, logoID, body) error` **delete** `/accounts/{account_id}/brand-protection/logos/{logo_id}` Return a success message after deleting saved logo queries by ID ### Parameters - `logoID string` - `body LogoDeleteParams` - `AccountID param.Field[string]` ### Example ```go package main import ( "context" "github.com/cloudflare/cloudflare-go" "github.com/cloudflare/cloudflare-go/brand_protection" "github.com/cloudflare/cloudflare-go/option" ) func main() { client := cloudflare.NewClient( option.WithAPIToken("Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY"), ) err := client.BrandProtection.Logos.Delete( context.TODO(), "x", brand_protection.LogoDeleteParams{ AccountID: cloudflare.F("x"), }, ) if err != nil { panic(err.Error()) } } ```