action telegram_post_leave_chat { label: "post_leaveChat" description: "Use this method for your bot to leave a group, supergroup or channel. Returns *True* on success." provider: telegram method: POST path: "/leaveChat" encoding: form input: { type: "object" required: ["chat_id"] properties: { chat_id: { description: "Unique identifier for the target chat or username of the target supergroup or channel (in the format `@channelusername`)" type: "object" } } } output: { type: "object" required: ["ok", "result"] properties: { ok: { type: "boolean" } result: { type: "boolean" } } } }