request_booking_link
Generate a booking link for a specific flight option using search ID, offer ID, and agency ID. Use this tool after the user confirms intent to book a flight.
Instructions
Request link for booking a flight option. This tool generates a booking link for a specific flight option.This tool is recommended to be used after the user expressed intention to book the flight option.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agency_id | Yes | Internal agency ID for generating booking link. | |
offer_id | Yes | Offer ID of the flight option for which to request a booking link. | |
search_id | Yes | Search ID from the previous search_flights tool. |
Input Schema (JSON Schema)
{
"properties": {
"agency_id": {
"description": "Internal agency ID for generating booking link.",
"title": "Agency Id",
"type": "string"
},
"offer_id": {
"description": "Offer ID of the flight option for which to request a booking link.",
"title": "Offer Id",
"type": "string"
},
"search_id": {
"description": "Search ID from the previous search_flights tool.",
"title": "Search Id",
"type": "string"
}
},
"required": [
"search_id",
"offer_id",
"agency_id"
],
"type": "object"
}