action telegram_post_kick_chat_member { label: "post_kickChatMember" description: "Use this method to kick a user from a group, a supergroup or a channel. In the case of supergroups and channels, the user will not be able to return to the group on their own using invite links, etc., unless [unbanned](https://core.telegram.org/bots/api/#unbanchatmember) first. The bot must be an administrator in the chat for this to work and must have the appropriate admin rights. Returns *True* on success." provider: telegram method: POST path: "/kickChatMember" encoding: form input: { type: "object" required: ["chat_id", "user_id"] properties: { chat_id: { description: "Unique identifier for the target group or username of the target supergroup or channel (in the format `@channelusername`)" type: "object" } until_date: { type: "integer" description: "Date when the user will be unbanned, unix time. If user is banned for more than 366 days or less than 30 seconds from the current time they are considered to be banned forever" } user_id: { type: "integer" description: "Unique identifier of the target user" } } } output: { type: "object" required: ["ok", "result"] properties: { ok: { type: "boolean" } result: { type: "boolean" } } } }