get_offer_details
Retrieve detailed flight offer information including pricing, itinerary details, and airline information using the unique offer identifier.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| offerId | Yes | Unique identifier for the flight offer |
Input Schema (JSON Schema)
{
"properties": {
"offerId": {
"description": "Unique identifier for the flight offer",
"type": "string"
}
},
"required": [
"offerId"
],
"type": "object"
}