{ "meta": {}, "group": { "title": "Available methods", "anchor": "available-methods" }, "object": { "anchor": "sendlocation", "name": "sendLocation", "description": "Use this method to send point on the map. On success, the sent Message is returned.", "html_description": "

Use this method to send point on the map. On success, the sent Message is returned.

", "rst_description": "Use this method to send point on the map. On success, the sent :class:`aiogram.types.message.Message` is returned.", "annotations": [ { "type": "String", "required": false, "description": "Unique identifier of the business connection on behalf of which the message will be sent", "html_description": "Unique identifier of the business connection on behalf of which the message will be sent", "rst_description": "Unique identifier of the business connection on behalf of which the message will be sent\n", "name": "business_connection_id" }, { "type": "Integer or String", "required": true, "description": "Unique identifier for the target chat or username of the target channel (in the format @channelusername)", "html_description": "Unique identifier for the target chat or username of the target channel (in the format @channelusername)", "rst_description": "Unique identifier for the target chat or username of the target channel (in the format :code:`@channelusername`)\n", "name": "chat_id" }, { "type": "Integer", "required": false, "description": "Unique identifier for the target message thread (topic) of a forum; for forum supergroups and private chats of bots with forum topic mode enabled only", "html_description": "Unique identifier for the target message thread (topic) of a forum; for forum supergroups and private chats of bots with forum topic mode enabled only", "rst_description": "Unique identifier for the target message thread (topic) of a forum; for forum supergroups and private chats of bots with forum topic mode enabled only\n", "name": "message_thread_id" }, { "type": "Integer", "required": false, "description": "Identifier of the direct messages topic to which the message will be sent; required if the message is sent to a direct messages chat", "html_description": "Identifier of the direct messages topic to which the message will be sent; required if the message is sent to a direct messages chat", "rst_description": "Identifier of the direct messages topic to which the message will be sent; required if the message is sent to a direct messages chat\n", "name": "direct_messages_topic_id" }, { "type": "Float", "required": true, "description": "Latitude of the location", "html_description": "Latitude of the location", "rst_description": "Latitude of the location\n", "name": "latitude" }, { "type": "Float", "required": true, "description": "Longitude of the location", "html_description": "Longitude of the location", "rst_description": "Longitude of the location\n", "name": "longitude" }, { "type": "Float", "required": false, "description": "The radius of uncertainty for the location, measured in meters; 0-1500", "html_description": "The radius of uncertainty for the location, measured in meters; 0-1500", "rst_description": "The radius of uncertainty for the location, measured in meters; 0-1500\n", "name": "horizontal_accuracy" }, { "type": "Integer", "required": false, "description": "Period in seconds during which the location will be updated (see Live Locations, should be between 60 and 86400, or 0x7FFFFFFF for live locations that can be edited indefinitely.", "html_description": "Period in seconds during which the location will be updated (see Live Locations, should be between 60 and 86400, or 0x7FFFFFFF for live locations that can be edited indefinitely.", "rst_description": "Period in seconds during which the location will be updated (see `Live Locations `_, should be between 60 and 86400, or 0x7FFFFFFF for live locations that can be edited indefinitely.\n", "name": "live_period" }, { "type": "Integer", "required": false, "description": "For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360 if specified.", "html_description": "For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360 if specified.", "rst_description": "For live locations, a direction in which the user is moving, in degrees. Must be between 1 and 360 if specified.\n", "name": "heading" }, { "type": "Integer", "required": false, "description": "For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.", "html_description": "For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.", "rst_description": "For live locations, a maximum distance for proximity alerts about approaching another chat member, in meters. Must be between 1 and 100000 if specified.\n", "name": "proximity_alert_radius" }, { "type": "Boolean", "required": false, "description": "Sends the message silently. Users will receive a notification with no sound.", "html_description": "Sends the message silently. Users will receive a notification with no sound.", "rst_description": "Sends the message `silently `_. Users will receive a notification with no sound.\n", "name": "disable_notification" }, { "type": "Boolean", "required": false, "description": "Protects the contents of the sent message from forwarding and saving", "html_description": "Protects the contents of the sent message from forwarding and saving", "rst_description": "Protects the contents of the sent message from forwarding and saving\n", "name": "protect_content" }, { "type": "Boolean", "required": false, "description": "Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance", "html_description": "Pass True to allow up to 1000 messages per second, ignoring broadcasting limits for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance", "rst_description": "Pass :code:`True` to allow up to 1000 messages per second, ignoring `broadcasting limits `_ for a fee of 0.1 Telegram Stars per message. The relevant Stars will be withdrawn from the bot's balance\n", "name": "allow_paid_broadcast" }, { "type": "String", "required": false, "description": "Unique identifier of the message effect to be added to the message; for private chats only", "html_description": "Unique identifier of the message effect to be added to the message; for private chats only", "rst_description": "Unique identifier of the message effect to be added to the message; for private chats only\n", "name": "message_effect_id" }, { "type": "SuggestedPostParameters", "required": false, "description": "A JSON-serialized object containing the parameters of the suggested post to send; for direct messages chats only. If the message is sent as a reply to another suggested post, then that suggested post is automatically declined.", "html_description": "A JSON-serialized object containing the parameters of the suggested post to send; for direct messages chats only. If the message is sent as a reply to another suggested post, then that suggested post is automatically declined.", "rst_description": "A JSON-serialized object containing the parameters of the suggested post to send; for direct messages chats only. If the message is sent as a reply to another suggested post, then that suggested post is automatically declined.\n", "name": "suggested_post_parameters" }, { "type": "ReplyParameters", "required": false, "description": "Description of the message to reply to", "html_description": "Description of the message to reply to", "rst_description": "Description of the message to reply to\n", "name": "reply_parameters" }, { "type": "InlineKeyboardMarkup or ReplyKeyboardMarkup or ReplyKeyboardRemove or ForceReply", "required": false, "description": "Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user", "html_description": "Additional interface options. A JSON-serialized object for an inline keyboard, custom reply keyboard, instructions to remove a reply keyboard or to force a reply from the user", "rst_description": "Additional interface options. A JSON-serialized object for an `inline keyboard `_, `custom reply keyboard `_, instructions to remove a reply keyboard or to force a reply from the user\n", "name": "reply_markup" }, { "type": "Boolean", "required": false, "description": "Pass True if the message should be sent even if the specified replied-to message is not found", "html_description": "Pass True if the message should be sent even if the specified replied-to message is not found", "rst_description": "Pass :code:`True` if the message should be sent even if the specified replied-to message is not found\n", "name": "allow_sending_without_reply", "deprecated": { "version": "7.0", "release_date": "2023-12-29" } }, { "type": "Integer", "required": false, "description": "If the message is a reply, ID of the original message", "html_description": "If the message is a reply, ID of the original message", "rst_description": "If the message is a reply, ID of the original message\n", "name": "reply_to_message_id", "deprecated": { "version": "7.0", "release_date": "2023-12-29" } } ], "category": "methods" } }