action stream_io_api_delete_segment { label: "Delete segment" description: "Delete a segment" provider: stream_io_api method: DELETE path: "/segments/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } } } }