Skip to main content
POST
/
api
/
shipments
/
{awb}
/
status
/
prepared
Send Status: Prepared for Loading (XFSU PRE)
curl --request POST \
  --url https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/shipments/{awb}/status/prepared \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "statusCode": "PRE",
  "updatedAt": "2024-01-01T15:00:00Z",
  "notify": [
    "airline",
    "aca",
    "consignor"
  ],
  "pieces": 10,
  "weight": 500,
  "uld": "AKE12345QR"
}
'
{
  "awbNumber": "157-12345678",
  "status": "PRE",
  "notified": [
    "airline",
    "aca",
    "consignor"
  ]
}

Reference Documentation

For more information on XFSU status notifications, please refer to:

Authorizations

Authorization
string
header
required

Path Parameters

awb
string
required

AWB number

Body

application/json
statusCode
string
required
Example:

"PRE"

updatedAt
string<date-time>
required
Example:

"2024-01-01T15:00:00Z"

notify
string[]
required
Example:
["airline", "aca", "consignor"]
pieces
integer
Example:

10

weight
number
Example:

500

uld
string
Example:

"AKE12345QR"

Response

200 - application/json

Status Notified

awbNumber
string
Example:

"157-12345678"

status
string
Example:

"PRE"

notified
string[]
Example:
["airline", "aca", "consignor"]