action telegram_post_get_chat_members_count { label: "post_getChatMembersCount" description: "Use this method to get the number of members in a chat. Returns *Int* on success." provider: telegram method: POST path: "/getChatMembersCount" 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: "integer" } } } }