answerShippingQuery
Returns boolean ↗
If you sent an invoice requesting a shipping address and the parameter is_flexible was specified, the Bot API will send an Update with a shipping_query field to the bot. Use this method to reply to shipping queries.
Required: shipping_query_id, ok · Optional: 2 parameters
Try it
TypeScript example · @effect-ak/tg-bot-client
import { makeTgBotClient } from "@effect-ak/tg-bot-client"
const client = makeTgBotClient({ bot_token: "YOUR_BOT_TOKEN" })
const result = await client.execute("answer_shipping_query", { shipping_query_id: "...", ok: true})Parameters
shipping_query_id string Required
Unique identifier for the query to be answered.
ok boolean Required
Pass True if delivery to the specified address is possible and False if there are any problems (for example, if delivery to the specified address is not possible).
shipping_options ShippingOption[]
Required if ok is True. A JSON-serialized array of available shipping options.
error_message string
Required if ok is False. Error message in human readable form that explains why it is impossible to complete the order (e.g. “Sorry, delivery to your desired address is unavailable”). Telegram will display this message to the user.
Related methods
answerCallbackQuery · answerInlineQuery · answerPreCheckoutQuery · answerWebAppQuery