action stream_io_api_stop_watching_channel { label: "Stop watching channel" description: "Call this method to stop receiving channel events" provider: stream_io_api method: POST path: "/channels/{type}/{id}/stop-watching" encoding: json input: { type: "object" properties: { client_id: { type: "string" } connection_id: { type: "string" } id: { type: "string" } type: { type: "string" } } required: ["id", "type"] additionalProperties: false } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } } } }