Transferable Funds UTA
This feature can be enabled in the API request by including:
"control": {
"features": [
"transferable_funds"
]
}
Overview
The new UTA category, Transferable Funds, allows airline customers to transfer flight credit to others or merge it into a pool for sharing. Filed under Branded Fares with the 1AL subcode, this benefit serves as a key differentiator across fare brands. With its integration into the UTA offering, channels can now provide flight shoppers with detailed insights, making it easier to compare and distinguish airline products.
Clients that already utilize the ticket_attributes_filter
field to filter only a specific subset of UTA categories can extend their filter by adding transferable_funds
to the list. Additionally, clients that utilize the uta_application_filter
can now use the transferable_funds
field to filter the Transferable Funds UTAs by their application
. For more information on the UTA filters, see the Requests page.
{
"control": {
"includes": ["uta"],
"features": ["transferable_funds"],
"ticket_attributes_filter": [
...
"transferable_funds"
]
},
...
}
Example Response Structure
Transferable Funds UTAs follow the same structure as the other UTA categories which get sourced from Optional Services:
{
"data": {
...
"transferable_funds": [
{
"application": "not offered",
"assessment": "Restriction",
"code": "1AL",
"commercial_name": "TRANSFERABLE FUNDS",
"description": "Transferable funds not available",
"group_code": "BF",
"headline": "Not available",
"id": "5127427",
"large_icon_url": "https://upamedia.atpco.net/icons/3acba14f-66d6-4044-96fb-84a0448e09b0/large/transferable-funds.png?channel_id=ATPCO",
"small_icon_url": "https://upamedia.atpco.net/icons/3acba14f-66d6-4044-96fb-84a0448e09b0/small/transferable-funds.png?channel_id=ATPCO",
"sub_group_code": "VR"
}
],
...
},
"itineraries": [
{
"data": {
"legs": [
{
"fares": [
{
"segments": [
{
...
"transferable_funds": [
[
"5127427"
]
],
...
}
]
}
],
...
}
]
},
...
}
],
"uuid": "..."
}