Webhook

Tracking Event

v2 equivalent: TRANSIT_UPDATE (uses shared event envelope).

Augment POSTs this payload to your configured tracking-event endpoint when Augie obtains a tracking event. Implement a listener at the URL you provide to Augment to receive these updates.

Body·
required
application/json
  • loadNumber
    Type: string
    required

    The unique identifier for the load

  • trackingEvent
    Type: object
    required
  • brokerageLoadInternalId
    Type: string

    Internal load ID in the TMS

Responses
  • 200

    Load updated successfully

Request Example for posttrackingEvent
{
  "loadNumber": "",
  "brokerageLoadInternalId": "",
  "trackingEvent": {
    "nextSequence": 1,
    "nextEtaUtc": null,
    "eventType": "DELAYED",
    "eventSource": "4KITES",
    "eventUtc": null,
    "city": "",
    "stateOrProvince": "",
    "postalCode": "",
    "latitude": 1,
    "longitude": 1,
    "temperatureF": 1,
    "notes": "",
    "dispatcher": {
      "id": "",
      "name": "",
      "phone": "+12081234567",
      "phoneExtension": "",
      "email": ""
    },
    "driver": {
      "id": "",
      "name": "",
      "phone": "+12081234567",
      "phoneExtension": "",
      "email": ""
    }
  }
}
No Body