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