action stream_io_api_delete_channel_type { label: "Delete channel type" description: "Deletes channel type" provider: stream_io_api method: DELETE path: "/channeltypes/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" } } required: ["name"] additionalProperties: false } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } } } }