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