Queue Remove API Reference
POST |
queue/queue/remove Base path: Use this base path if you have not yet received or not migrated to the new credentials from Travelport:
Use this base path after you have migrated to the new credentials from Travelport (using .net instead of .com):
|
Related Content: Ticketing Guide, Queue Placement, Queue List
Use Queue Remove to remove one or more bookings from a specified queue.
Queues provide the ability to place a booking into an area that allows you to manage, sort, and store booking files, messages from vendors, and manage workflow. Queue management distributes messages from vendors and customers to the specified queues for action. Bookings can be added to a queue either by sending an optional payload to specify a queue at booking at Workbench Commit, or the Queue Placement API.
Request
As part of the request requirements, also see Authentication and Common Air Headers.
Query Parameters
None.
Request Body

Object |
Description |
Required/Optional |
---|---|---|
AgencyQueueSummary |
Top level object for request. |
Required |
ReservationIdentifier |
Top level object. |
Required |
|
Locator code of the reservation to remove from the queue. |
Required |
Queue |
Queue details. Multiple instances of Queue can be sent. Each instance is one individual queue. |
Required |
|
Queue number. |
Required |
|
Customer-defined category within a queue. |
Optional |
|
Numeric value for a date range. |
Optional |
|
PCC to override the agency default PCC for that queue. |
Optional |
Response

Object |
Description |
---|---|
BaseResponse |
Top level object. |
Result |
Top level object. |
|
Status of queue placement. |
Example Request

{
"@type": "AgencyQueueSummary",
"ReservationIdentifier": {
"value": “ABC123”
},
"Queue": [
{
"value": 23,
"pccOverride": "1AA1",
"category": "AR",
"dateOffset": 3
}
]
}
Example Response

{
"BaseResponse": {
"@type": "BaseResponse",
"Result": {
"@type": "Result",
"status": "Complete"
}
}
}