action configcat_delete_product { label: "Delete Product" description: "This endpoint removes a Product identified by the `productId` parameter." provider: configcat method: DELETE path: "/v1/products/{productId}" encoding: json input: { type: "object" properties: { productId: { type: "string" format: "uuid" } } required: ["productId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }