action stream_io_api_unmute_channel { label: "Unmute channel" description: "Unmutes channel for user" provider: stream_io_api method: POST path: "/moderation/unmute/channel" encoding: json input: { type: "object" required: ["channel_cid", "channel_cids"] properties: { channel_cid: { type: "string" } channel_cids: { type: "array" items: { type: "string" } } expiration: { type: "number" } user: { type: "object" description: "Represents chat user" required: ["id"] properties: { ban_expires: { type: "string" format: "date-time" description: "Expiration date of the ban" } banned: { type: "boolean" description: "Whether a user is banned or not" } id: { type: "string" description: "Unique user identifier" } invisible: { type: "boolean" } language: { type: "string" description: "Preferred language of a user" } push_notifications: { type: "object" properties: { disabled: { type: "boolean" } disabled_until: { type: "string" format: "date-time" } } } revoke_tokens_issued_before: { type: "string" format: "date-time" description: "Revocation date for tokens" } role: { type: "string" description: "Determines the set of user permissions" } teams: { type: "array" description: "List of teams user is a part of" items: { type: "string" } } } } user_id: { type: "string" } } } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } } } }