action vtex_delete_api_catalog_pvt_brand_brand_id { label: "Delete Brand" description: "Deletes an existing Brand." provider: vtex method: DELETE path: "/api/catalog/pvt/brand/{brandId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } brandId: { type: "string" } } required: ["Accept", "Content-Type", "brandId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }