Document List API Reference
Get |
documents/documentlist/{LocatorCode} Base path: Note the following base path does not include air and varies from other JSON Air APIs.
Pre-production https://api.pp.travelport.com/11/ Production https://api.travelport.com/11/ |
Related Content: Air Booking Guide
Document List retrieves a list of tickets, invoices, MCOs, and EMDs associated with a record locator. The request can retrieve this information even after the booking and associated documents are purged from the airline's database. Unlike Document History, Document List does not return details of the documents; instead it returns each document's type, status, transaction date, and PCC.
Request
Also see Authorization and Common Headers.
Query Parameters
None.
Request Body
None.
Response

Object |
Description |
---|---|
DocumentHistoryListResponse |
Top-level object for response. Includes the documentHistoryList object. |
documentHistoryList |
Array. One instance returned for each document associated with the record locator provided in the endpoint. Includes the documentListSummary object. Key value pairs: name: Passenger name associated with the document. |
documentListSummary |
Document details. Key value pairs; not all are applicable to and returned for all types of documents:
|
Example Request
The request has no message body. Example GET request:
https://api.travelport.com/11/documents/documentlist/ZY9CLR
Example Response

{
"DocumentHistoryListResponse": {
"@type": "DocumentHistoryListResponse",
"documentHistoryList": [
{
"name": "GATER/ALLIE",
"documentListSummary": [
{
"platingAirline": "VA",
"number": "7959905312628",
"documentType": "E",
"actionStatus": "I",
"transactionDateTimeUTC": "2025-06-19T20:34:00.000Z",
"pseudoCityCode": "XB7"
}
]
},
{
"name": "GATER/ALLIE",
"documentListSummary": [
{
"platingAirline": "VA",
"number": "7959905312629",
"documentType": "E",
"actionStatus": "E",
"transactionDateTimeUTC": "2025-06-19T20:39:00.000Z",
"pseudoCityCode": "XB7"
}
]
},
{
"name": "GATER/ALLIE",
"documentListSummary": [
{
"number": "122484",
"documentType": "I",
"transactionDateTimeUTC": "2025-06-19T20:39:00.000Z",
"pseudoCityCode": "XB7"
}
]
}
]
}
}