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