action telegram_post_get_chat_member { label: "post_getChatMember" description: "Use this method to get information about a member of a chat. Returns a [ChatMember](https://core.telegram.org/bots/api/#chatmember) object on success." provider: telegram method: POST path: "/getChatMember" encoding: form input: { type: "object" required: ["chat_id", "user_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" } user_id: { type: "integer" description: "Unique identifier of the target user" } } } output: { type: "object" required: ["ok", "result"] properties: { ok: { type: "boolean" } result: { type: "object" description: "This object contains information about one member of a chat." required: ["status", "user"] properties: { can_add_web_page_previews: { type: "boolean" description: "*Optional*. Restricted only. True, if the user is allowed to add web page previews to their messages" } can_be_edited: { type: "boolean" description: "*Optional*. Administrators only. True, if the bot is allowed to edit administrator privileges of that user" } can_change_info: { type: "boolean" description: "*Optional*. Administrators and restricted only. True, if the user is allowed to change the chat title, photo and other settings" } can_delete_messages: { type: "boolean" description: "*Optional*. Administrators only. True, if the administrator can delete messages of other users" } can_edit_messages: { type: "boolean" description: "*Optional*. Administrators only. True, if the administrator can edit messages of other users and can pin messages; channels only" } can_invite_users: { type: "boolean" description: "*Optional*. Administrators and restricted only. True, if the user is allowed to invite new users to the chat" } can_pin_messages: { type: "boolean" description: "*Optional*. Administrators and restricted only. True, if the user is allowed to pin messages; groups and supergroups only" } can_post_messages: { type: "boolean" description: "*Optional*. Administrators only. True, if the administrator can post in the channel; channels only" } can_promote_members: { type: "boolean" description: "*Optional*. Administrators only. True, if the administrator can add new administrators with a subset of their own privileges or demote administrators that he has promoted, directly or indirectly (promoted by administrators that were appointed by the user)" } can_restrict_members: { type: "boolean" description: "*Optional*. Administrators only. True, if the administrator can restrict, ban or unban chat members" } can_send_media_messages: { type: "boolean" description: "*Optional*. Restricted only. True, if the user is allowed to send audios, documents, photos, videos, video notes and voice notes" } can_send_messages: { type: "boolean" description: "*Optional*. Restricted only. True, if the user is allowed to send text messages, contacts, locations and venues" } can_send_other_messages: { type: "boolean" description: "*Optional*. Restricted only. True, if the user is allowed to send animations, games, stickers and use inline bots" } can_send_polls: { type: "boolean" description: "*Optional*. Restricted only. True, if the user is allowed to send polls" } custom_title: { type: "string" description: "*Optional*. Owner and administrators only. Custom title for this user" } is_anonymous: { type: "boolean" description: "*Optional*. Owner and administrators only. True, if the user's presence in the chat is hidden" } is_member: { type: "boolean" description: "*Optional*. Restricted only. True, if the user is a member of the chat at the moment of the request" } status: { type: "string" description: "The member's status in the chat. Can be “creator”, “administrator”, “member”, “restricted”, “left” or “kicked”" enum: ["creator", "administrator", "member", "restricted", "left", "kicked"] } until_date: { type: "integer" description: "*Optional*. Restricted and kicked only. Date when restrictions will be lifted for this user; unix time" } user: { type: "object" description: "This object represents a Telegram user or bot." required: ["first_name", "id", "is_bot"] properties: { can_join_groups: { type: "boolean" description: "*Optional*. True, if the bot can be invited to groups. Returned only in [getMe](https://core.telegram.org/bots/api/#getme)." } can_read_all_group_messages: { type: "boolean" description: "*Optional*. True, if [privacy mode](https://core.telegram.org/bots#privacy-mode) is disabled for the bot. Returned only in [getMe](https://core.telegram.org/bots/api/#getme)." } first_name: { type: "string" description: "User's or bot's first name" } id: { type: "integer" description: "Unique identifier for this user or bot" } is_bot: { type: "boolean" description: "True, if this user is a bot" } language_code: { type: "string" description: "*Optional*. [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) of the user's language" } last_name: { type: "string" description: "*Optional*. User's or bot's last name" } supports_inline_queries: { type: "boolean" description: "*Optional*. True, if the bot supports inline queries. Returned only in [getMe](https://core.telegram.org/bots/api/#getme)." } username: { type: "string" description: "*Optional*. User's or bot's username" } } } } } } } }