Skip to main content
POST
/
api
/
terminals
/
slots
Create slot booking
curl --request POST \
  --url https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/terminals/slots \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "terminal": "DOH Cargo Terminal",
  "requestedDate": "2024-01-01",
  "requestedTime": "08:00",
  "duration": 2,
  "awbNumbers": [
    "15712345678"
  ]
}'
{
  "slotId": "slot-123",
  "terminal": "DOH Cargo Terminal",
  "confirmedDate": "2024-01-01",
  "confirmedTime": "08:00",
  "vctNumber": "VCT001"
}
Create and manage terminal slot bookings with VCT/TSP issuance.

Reference Documentation

For more information on TSM delivery slots, please refer to:

Authorizations

Authorization
string
header
required

Body

application/json
terminal
string
required
Example:

"DOH Cargo Terminal"

requestedDate
string<date>
required
Example:

"2024-01-01"

requestedTime
string
required
Example:

"08:00"

duration
integer
required
Example:

2

awbNumbers
string[]
required
Example:
["15712345678"]

Response

201 - application/json

Slot booked

slotId
string
Example:

"slot-123"

terminal
string
Example:

"DOH Cargo Terminal"

confirmedDate
string<date>
Example:

"2024-01-01"

confirmedTime
string
Example:

"08:00"

vctNumber
string
Example:

"VCT001"

I