telegram-bot-api-versions/files/postman/v200.json

1440 lines
68 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"info": {
"name": "Telegram Bot API",
"description": "Auto-generated Postman collection by TGScraper.",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"version": "2.0.0"
},
"variable": {
"key": "token",
"description": "Bot's unique authentication token, given by @BotFather.",
"type": "string",
"value": "1234:AAbbcc"
},
"item": [
{
"name": "getUpdates",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "offset",
"disabled": true,
"description": "Optional. Identifier of the first update to be returned. Must be greater by one than the highest among the identifiers of previously received updates. By default, updates starting with the earliest unconfirmed update are returned. An update is considered confirmed as soon as getUpdates is called with an offset higher than its update_id. The negative offset can be specified to retrieve updates starting from -offset update from the end of the updates queue. All previous updates will forgotten.",
"type": "text"
},
{
"key": "limit",
"disabled": true,
"description": "Optional. Limits the number of updates to be retrieved. Values between 1—100 are accepted. Defaults to 100.",
"type": "text",
"value": "100"
},
{
"key": "timeout",
"disabled": true,
"description": "Optional. Timeout in seconds for long polling. Defaults to 0, i.e. usual short polling",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/getUpdates",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"getUpdates"
]
},
"description": "Use this method to receive incoming updates using long polling (wiki). An Array of Update objects is returned."
}
},
{
"name": "setWebhook",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "url",
"disabled": true,
"description": "Optional. HTTPS url to send updates to. Use an empty string to remove webhook integration",
"type": "text"
},
{
"key": "certificate",
"disabled": true,
"description": "Optional. Upload your public key certificate so that the root certificate in use can be checked. See our self-signed guide for details.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/setWebhook",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"setWebhook"
]
},
"description": "Use this method to specify a url and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified url, containing a JSON-serialized Update. In case of an unsuccessful request, we will give up after a reasonable amount of attempts.\nIf you'd like to make sure that the Webhook request comes from Telegram, we recommend using a secret path in the URL, e.g. https://www.example.com/<token>. Since nobody else knows your bots token, you can be pretty sure its us."
}
},
{
"name": "getMe",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": []
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/getMe",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"getMe"
]
},
"description": "A simple method for testing your bot's auth token. Requires no parameters. Returns basic information about the bot in form of a User object."
}
},
{
"name": "sendMessage",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "text",
"disabled": false,
"description": "Required. Text of the message to be sent",
"type": "text"
},
{
"key": "parse_mode",
"disabled": true,
"description": "Optional. Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in your bot's message.",
"type": "text"
},
{
"key": "disable_web_page_preview",
"disabled": true,
"description": "Optional. Disables link previews for links in this message",
"type": "text"
},
{
"key": "disable_notification",
"disabled": true,
"description": "Optional. Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound.",
"type": "text"
},
{
"key": "reply_to_message_id",
"disabled": true,
"description": "Optional. If the message is a reply, ID of the original message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to hide reply keyboard or to force a reply from the user.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/sendMessage",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"sendMessage"
]
},
"description": "Use this method to send text messages. On success, the sent Message is returned."
}
},
{
"name": "forwardMessage",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "from_chat_id",
"disabled": false,
"description": "Required. Unique identifier for the chat where the original message was sent (or channel username in the format @channelusername)",
"type": "text"
},
{
"key": "disable_notification",
"disabled": true,
"description": "Optional. Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound.",
"type": "text"
},
{
"key": "message_id",
"disabled": false,
"description": "Required. Unique message identifier",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/forwardMessage",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"forwardMessage"
]
},
"description": "Use this method to forward messages of any kind. On success, the sent Message is returned."
}
},
{
"name": "sendPhoto",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "photo",
"disabled": false,
"description": "Required. Photo to send. You can either pass a file_id as String to resend a photo that is already on the Telegram servers, or upload a new photo using multipart/form-data.",
"type": "text"
},
{
"key": "caption",
"disabled": true,
"description": "Optional. Photo caption (may also be used when resending photos by file_id), 0-200 characters",
"type": "text"
},
{
"key": "disable_notification",
"disabled": true,
"description": "Optional. Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound.",
"type": "text"
},
{
"key": "reply_to_message_id",
"disabled": true,
"description": "Optional. If the message is a reply, ID of the original message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to hide reply keyboard or to force a reply from the user.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/sendPhoto",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"sendPhoto"
]
},
"description": "Use this method to send photos. On success, the sent Message is returned."
}
},
{
"name": "sendAudio",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "audio",
"disabled": false,
"description": "Required. Audio file to send. You can either pass a file_id as String to resend an audio that is already on the Telegram servers, or upload a new audio file using multipart/form-data.",
"type": "text"
},
{
"key": "duration",
"disabled": true,
"description": "Optional. Duration of the audio in seconds",
"type": "text"
},
{
"key": "performer",
"disabled": true,
"description": "Optional. Performer",
"type": "text"
},
{
"key": "title",
"disabled": true,
"description": "Optional. Track name",
"type": "text"
},
{
"key": "disable_notification",
"disabled": true,
"description": "Optional. Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound.",
"type": "text"
},
{
"key": "reply_to_message_id",
"disabled": true,
"description": "Optional. If the message is a reply, ID of the original message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to hide reply keyboard or to force a reply from the user.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/sendAudio",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"sendAudio"
]
},
"description": "Use this method to send audio files, if you want Telegram clients to display them in the music player. Your audio must be in the .mp3 format. On success, the sent Message is returned. Bots can currently send audio files of up to 50 MB in size, this limit may be changed in the future.\nFor sending voice messages, use the sendVoice method instead."
}
},
{
"name": "sendDocument",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "document",
"disabled": false,
"description": "Required. File to send. You can either pass a file_id as String to resend a file that is already on the Telegram servers, or upload a new file using multipart/form-data.",
"type": "text"
},
{
"key": "caption",
"disabled": true,
"description": "Optional. Document caption (may also be used when resending documents by file_id), 0-200 characters",
"type": "text"
},
{
"key": "disable_notification",
"disabled": true,
"description": "Optional. Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound.",
"type": "text"
},
{
"key": "reply_to_message_id",
"disabled": true,
"description": "Optional. If the message is a reply, ID of the original message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to hide reply keyboard or to force a reply from the user.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/sendDocument",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"sendDocument"
]
},
"description": "Use this method to send general files. On success, the sent Message is returned. Bots can currently send files of any type of up to 50 MB in size, this limit may be changed in the future."
}
},
{
"name": "sendSticker",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "sticker",
"disabled": false,
"description": "Required. Sticker to send. You can either pass a file_id as String to resend a sticker that is already on the Telegram servers, or upload a new sticker using multipart/form-data.",
"type": "text"
},
{
"key": "disable_notification",
"disabled": true,
"description": "Optional. Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound.",
"type": "text"
},
{
"key": "reply_to_message_id",
"disabled": true,
"description": "Optional. If the message is a reply, ID of the original message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to hide reply keyboard or to force a reply from the user.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/sendSticker",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"sendSticker"
]
},
"description": "Use this method to send .webp stickers. On success, the sent Message is returned."
}
},
{
"name": "sendVideo",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "video",
"disabled": false,
"description": "Required. Video to send. You can either pass a file_id as String to resend a video that is already on the Telegram servers, or upload a new video file using multipart/form-data.",
"type": "text"
},
{
"key": "duration",
"disabled": true,
"description": "Optional. Duration of sent video in seconds",
"type": "text"
},
{
"key": "width",
"disabled": true,
"description": "Optional. Video width",
"type": "text"
},
{
"key": "height",
"disabled": true,
"description": "Optional. Video height",
"type": "text"
},
{
"key": "caption",
"disabled": true,
"description": "Optional. Video caption (may also be used when resending videos by file_id), 0-200 characters",
"type": "text"
},
{
"key": "disable_notification",
"disabled": true,
"description": "Optional. Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound.",
"type": "text"
},
{
"key": "reply_to_message_id",
"disabled": true,
"description": "Optional. If the message is a reply, ID of the original message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to hide reply keyboard or to force a reply from the user.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/sendVideo",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"sendVideo"
]
},
"description": "Use this method to send video files, Telegram clients support mp4 videos (other formats may be sent as Document). On success, the sent Message is returned. Bots can currently send video files of up to 50 MB in size, this limit may be changed in the future."
}
},
{
"name": "sendVoice",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "voice",
"disabled": false,
"description": "Required. Audio file to send. You can either pass a file_id as String to resend an audio that is already on the Telegram servers, or upload a new audio file using multipart/form-data.",
"type": "text"
},
{
"key": "duration",
"disabled": true,
"description": "Optional. Duration of sent audio in seconds",
"type": "text"
},
{
"key": "disable_notification",
"disabled": true,
"description": "Optional. Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound.",
"type": "text"
},
{
"key": "reply_to_message_id",
"disabled": true,
"description": "Optional. If the message is a reply, ID of the original message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to hide reply keyboard or to force a reply from the user.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/sendVoice",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"sendVoice"
]
},
"description": "Use this method to send audio files, if you want Telegram clients to display the file as a playable voice message. For this to work, your audio must be in an .ogg file encoded with OPUS (other formats may be sent as Audio or Document). On success, the sent Message is returned. Bots can currently send voice messages of up to 50 MB in size, this limit may be changed in the future."
}
},
{
"name": "sendLocation",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "latitude",
"disabled": false,
"description": "Required. Latitude of location",
"type": "text"
},
{
"key": "longitude",
"disabled": false,
"description": "Required. Longitude of location",
"type": "text"
},
{
"key": "disable_notification",
"disabled": true,
"description": "Optional. Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound.",
"type": "text"
},
{
"key": "reply_to_message_id",
"disabled": true,
"description": "Optional. If the message is a reply, ID of the original message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to hide reply keyboard or to force a reply from the user.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/sendLocation",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"sendLocation"
]
},
"description": "Use this method to send point on the map. On success, the sent Message is returned."
}
},
{
"name": "sendVenue",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "latitude",
"disabled": false,
"description": "Required. Latitude of the venue",
"type": "text"
},
{
"key": "longitude",
"disabled": false,
"description": "Required. Longitude of the venue",
"type": "text"
},
{
"key": "title",
"disabled": false,
"description": "Required. Name of the venue",
"type": "text"
},
{
"key": "address",
"disabled": false,
"description": "Required. Address of the venue",
"type": "text"
},
{
"key": "foursquare_id",
"disabled": true,
"description": "Optional. Foursquare identifier of the venue",
"type": "text"
},
{
"key": "disable_notification",
"disabled": true,
"description": "Optional. Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound.",
"type": "text"
},
{
"key": "reply_to_message_id",
"disabled": true,
"description": "Optional. If the message is a reply, ID of the original message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to hide reply keyboard or to force a reply from the user.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/sendVenue",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"sendVenue"
]
},
"description": "Use this method to send information about a venue. On success, the sent Message is returned."
}
},
{
"name": "sendContact",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "phone_number",
"disabled": false,
"description": "Required. Contact's phone number",
"type": "text"
},
{
"key": "first_name",
"disabled": false,
"description": "Required. Contact's first name",
"type": "text"
},
{
"key": "last_name",
"disabled": true,
"description": "Optional. Contact's last name",
"type": "text"
},
{
"key": "disable_notification",
"disabled": true,
"description": "Optional. Sends the message silently. iOS users will not receive a notification, Android users will receive a notification with no sound.",
"type": "text"
},
{
"key": "reply_to_message_id",
"disabled": true,
"description": "Optional. If the message is a reply, ID of the original message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to hide keyboard or to force a reply from the user.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/sendContact",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"sendContact"
]
},
"description": "Use this method to send phone contacts. On success, the sent Message is returned."
}
},
{
"name": "sendChatAction",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "action",
"disabled": false,
"description": "Required. Type of action to broadcast. Choose one, depending on what the user is about to receive: typing for text messages, upload_photo for photos, record_video or upload_video for videos, record_audio or upload_audio for audio files, upload_document for general files, find_location for location data.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/sendChatAction",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"sendChatAction"
]
},
"description": "Use this method when you need to tell the user that something is happening on the bot's side. The status is set for 5 seconds or less (when a message arrives from your bot, Telegram clients clear its typing status).\nWe only recommend using this method when a response from the bot will take a noticeable amount of time to arrive."
}
},
{
"name": "getUserProfilePhotos",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "user_id",
"disabled": false,
"description": "Required. Unique identifier of the target user",
"type": "text"
},
{
"key": "offset",
"disabled": true,
"description": "Optional. Sequential number of the first photo to be returned. By default, all photos are returned.",
"type": "text"
},
{
"key": "limit",
"disabled": true,
"description": "Optional. Limits the number of photos to be retrieved. Values between 1—100 are accepted. Defaults to 100.",
"type": "text",
"value": "100"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/getUserProfilePhotos",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"getUserProfilePhotos"
]
},
"description": "Use this method to get a list of profile pictures for a user. Returns a UserProfilePhotos object."
}
},
{
"name": "getFile",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "file_id",
"disabled": false,
"description": "Required. File identifier to get info about",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/getFile",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"getFile"
]
},
"description": "Use this method to get basic info about a file and prepare it for downloading. For the moment, bots can download files of up to 20MB in size. On success, a File object is returned. The file can then be downloaded via the link https://api.telegram.org/file/bot<token>/<file_path>, where <file_path> is taken from the response. It is guaranteed that the link will be valid for at least 1 hour. When the link expires, a new one can be requested by calling getFile again."
}
},
{
"name": "kickChatMember",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target group or username of the target supergroup (in the format @supergroupusername)",
"type": "text"
},
{
"key": "user_id",
"disabled": false,
"description": "Required. Unique identifier of the target user",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/kickChatMember",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"kickChatMember"
]
},
"description": "Use this method to kick a user from a group or a supergroup. In the case of supergroups, the user will not be able to return to the group on their own using invite links, etc., unless unbanned first. The bot must be an administrator in the group for this to work. Returns True on success."
}
},
{
"name": "unbanChatMember",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": false,
"description": "Required. Unique identifier for the target group or username of the target supergroup (in the format @supergroupusername)",
"type": "text"
},
{
"key": "user_id",
"disabled": false,
"description": "Required. Unique identifier of the target user",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/unbanChatMember",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"unbanChatMember"
]
},
"description": "Use this method to unban a previously kicked user in a supergroup. The user will not return to the group automatically, but will be able to join via link, etc. The bot must be an administrator in the group for this to work. Returns True on success."
}
},
{
"name": "answerCallbackQuery",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "callback_query_id",
"disabled": false,
"description": "Required. Unique identifier for the query to be answered",
"type": "text"
},
{
"key": "text",
"disabled": true,
"description": "Optional. Text of the notification. If not specified, nothing will be shown to the user",
"type": "text"
},
{
"key": "show_alert",
"disabled": true,
"description": "Optional. If true, an alert will be shown by the client instead of a notification at the top of the chat screen. Defaults to false.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/answerCallbackQuery",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"answerCallbackQuery"
]
},
"description": "Use this method to send answers to callback queries sent from inline keyboards. The answer will be displayed to the user as a notification at the top of the chat screen or as an alert. On success, True is returned."
}
},
{
"name": "editMessageText",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": true,
"description": "Optional. Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "message_id",
"disabled": true,
"description": "Optional. Required if inline_message_id is not specified. Unique identifier of the sent message",
"type": "text"
},
{
"key": "inline_message_id",
"disabled": true,
"description": "Optional. Required if chat_id and message_id are not specified. Identifier of the inline message",
"type": "text"
},
{
"key": "text",
"disabled": false,
"description": "Required. New text of the message",
"type": "text"
},
{
"key": "parse_mode",
"disabled": true,
"description": "Optional. Send Markdown or HTML, if you want Telegram apps to show bold, italic, fixed-width text or inline URLs in your bot's message.",
"type": "text"
},
{
"key": "disable_web_page_preview",
"disabled": true,
"description": "Optional. Disables link previews for links in this message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. A JSON-serialized object for an inline keyboard.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/editMessageText",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"editMessageText"
]
},
"description": "Use this method to edit text messages sent by the bot or via the bot (for inline bots). On success, the edited Message is returned."
}
},
{
"name": "editMessageCaption",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": true,
"description": "Optional. Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "message_id",
"disabled": true,
"description": "Optional. Required if inline_message_id is not specified. Unique identifier of the sent message",
"type": "text"
},
{
"key": "inline_message_id",
"disabled": true,
"description": "Optional. Required if chat_id and message_id are not specified. Identifier of the inline message",
"type": "text"
},
{
"key": "caption",
"disabled": true,
"description": "Optional. New caption of the message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. A JSON-serialized object for an inline keyboard.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/editMessageCaption",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"editMessageCaption"
]
},
"description": "Use this method to edit captions of messages sent by the bot or via the bot (for inline bots). On success, the edited Message is returned."
}
},
{
"name": "editMessageReplyMarkup",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "chat_id",
"disabled": true,
"description": "Optional. Required if inline_message_id is not specified. Unique identifier for the target chat or username of the target channel (in the format @channelusername)",
"type": "text"
},
{
"key": "message_id",
"disabled": true,
"description": "Optional. Required if inline_message_id is not specified. Unique identifier of the sent message",
"type": "text"
},
{
"key": "inline_message_id",
"disabled": true,
"description": "Optional. Required if chat_id and message_id are not specified. Identifier of the inline message",
"type": "text"
},
{
"key": "reply_markup",
"disabled": true,
"description": "Optional. A JSON-serialized object for an inline keyboard.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/editMessageReplyMarkup",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"editMessageReplyMarkup"
]
},
"description": "Use this method to edit only the reply markup of messages sent by the bot or via the bot (for inline bots). On success, the edited Message is returned."
}
},
{
"name": "answerInlineQuery",
"request": {
"method": "POST",
"body": {
"mode": "formdata",
"formdata": [
{
"key": "Parameters",
"disabled": true,
"description": "Optional. Description",
"type": "text"
},
{
"key": "inline_query_id",
"disabled": false,
"description": "Required. Unique identifier for the answered query",
"type": "text"
},
{
"key": "results",
"disabled": false,
"description": "Required. A JSON-serialized array of results for the inline query",
"type": "text"
},
{
"key": "cache_time",
"disabled": true,
"description": "Optional. The maximum amount of time in seconds that the result of the inline query may be cached on the server. Defaults to 300.",
"type": "text",
"value": "300"
},
{
"key": "is_personal",
"disabled": true,
"description": "Optional. Pass True, if results may be cached on the server side only for the user that sent the query. By default, results may be returned to any user who sends the same query",
"type": "text"
},
{
"key": "next_offset",
"disabled": true,
"description": "Optional. Pass the offset that a client should send in the next query with the same text to receive more results. Pass an empty string if there are no more results or if you dont support pagination. Offset length cant exceed 64 bytes.",
"type": "text"
},
{
"key": "switch_pm_text",
"disabled": true,
"description": "Optional. If passed, clients will display a button with specified text that switches the user to a private chat with the bot and sends the bot a start message with the parameter switch_pm_parameter",
"type": "text"
},
{
"key": "switch_pm_parameter",
"disabled": true,
"description": "Optional. Parameter for the start message sent to the bot when user presses the switch buttonExample: An inline bot that sends YouTube videos can ask the user to connect the bot to their YouTube account to adapt search results accordingly. To do this, it displays a Connect your YouTube account button above the results, or even before showing any. The user presses the button, switches to a private chat with the bot and, in doing so, passes a start parameter that instructs the bot to return an oauth link. Once done, the bot can offer a switch_inline button so that the user can easily return to the chat where they wanted to use the bot's inline capabilities.",
"type": "text"
}
]
},
"url": {
"raw": "https://api.telegram.org/bot{{token}}/answerInlineQuery",
"protocol": "https",
"host": [
"api",
"telegram",
"org"
],
"path": [
"bot{{token}}",
"answerInlineQuery"
]
},
"description": "Use this method to send answers to an inline query. On success, True is returned.No more than 50 results per query are allowed."
}
}
]
}