POST
/
shipment-events
curl --request POST \
  --url https://api-stage.orchestro.ai/e1/shipment-events \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "trackingId": "TEST-123",
  "accountNumber": "TEST_ACCOUNT_1",
  "carrierCode": "TEST_CARRIER_CODE",
  "carrierName": "TEST_CARRIER_NAME",
  "event": {
    "comments": "Pickup scan successful",
    "status": "DPCK",
    "alternateStatusCode": "",
    "deliverySignature": "",
    "timestamp": "2014-10-29T06:34:00",
    "timezone": "CST",
    "latitude": 38.896765,
    "longitude": -77.036211,
    "city": "HARKER HEIGHTS",
    "state": "TX",
    "zip": "76548",
    "pod": null
  }
}'
{
  "message": "SUCCESS"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Content-Type
string
required
Example:

"application/json"

Authorization
string
required
Example:

"Bearer token"

Body

application/json

Response

200
application/json

Shipment event created successfully.

The response is of type object.