Update/Modify transfer on a booking by transfer ID
PATCH /[context]/[contextId]/Transfers/[id]
Context in Request URI should be 'bookings'
ContextId in Request URI should be Booking ID
ID of the transfer
Date (Optional for patch but required if either date or time is needed to be updated)
Time (Optional for patch but required if either date or time is needed to be updated)
Any value (must have at least 1 non-whitespace character) - Optional for patch
URIs of customers to book on the transfer that has already been added to booking Existing customers on the transfer will not be affected – this only books new customers on the transfer. (Optional for patch)
URI of the resource
{
"flightDate": "2024-12-21",
"flightTime": "10:10",
"flightNumber": "UA105",
"customers": [
{
"href": "/bookings/5057124/customers/4945397"
},
{
"href": "/bookings/5057124/customers/4945397"
}
]
}