Load Carrier Event

This endpoint is called when Augie obtains update to the carrier for a load. Clients should implement this endpoint to receive updates.

Body
required
application/json
  • loadCarrierUpdate
    Type: object · LoadCarrierUpdate
    required
  • loadNumber
    Type: string
    required

    The unique identifier for the load

  • brokerageLoadInternalId
    Type: string

    Internal load ID in the TMS

Request Example for post/callback/load-carrier-event
curl https://api.prod.goaugment.com/callback/load-carrier-event \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Basic username:password' \
  --data '{
  "loadNumber": "",
  "brokerageLoadInternalId": "",
  "loadCarrierUpdate": {
    "source": "EMAIL",
    "driverName": "",
    "driverPhoneNumber": "",
    "truckNumber": "",
    "trailerNumber": "",
    "bolNumber": "",
    "notes": ""
  }
}'