action beezup_delete_channel_catalog_product_value_override { label: "Delete a specific channel catalog product value override" provider: beezup method: DELETE path: "/v2/user/channelCatalogs/{channelCatalogId}/products/{productId}/overrides/{channelColumnId}" encoding: json input: { type: "object" properties: { channelCatalogId: { type: "string" format: "guid" } channelColumnId: { type: "string" format: "guid" } productId: { type: "string" format: "guid" } } required: ["channelCatalogId", "channelColumnId", "productId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }