action stream_io_api_get_channel_type { label: "Get channel type" description: "Gets channel type" provider: stream_io_api method: GET 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" } } } }