action cloudflare_get_accounts_account_id_brand_protection_matches { label: "Read matches for string queries by ID" description: "Return matches for string queries based on ID" provider: cloudflare method: GET path: "/accounts/{account_id}/brand-protection/matches" encoding: json input: { type: "object" properties: { id: { type: "string" } include_dismissed: { type: "boolean" } include_domain_id: { type: "boolean" } limit: { type: "integer" } offset: { type: "integer" } } additionalProperties: false } output: { type: "object" properties: { matches: { type: "array" items: { type: "object" } } total: { type: "integer" } } } }