Required
Transit Update
v1 equivalent:
trackingEvent(flat payload).
Sent when Augment receives a location or tracking update from a carrier communication. Contains the driver's current position, the next stop ETA, and the source of the tracking data.
Body·
required
application/json
Common envelope shared by Track & Trace webhook events. Use
eventTypeto determine how to interpret thedatafield.- Type: string | nullbrokerage
Load Internal Id requiredYour internal load ID, if provided during load creation
- datarequired
- Type: stringenumevent
Type requiredDetermines the shape of
datavalues- T
R A N S I T _ U P D A T E - S
T O P _ U P D A T E - C
A R R I E R _ I N F O _ U P D A T E - C
O M M E N T - S
C H E D U L E D _ C A R R I E R _ O U T R E A C H
- Type: stringidrequired
Unique event identifier (ULID)
- Type: string | nullload
Number requiredYour load reference number
- Type: stringFormat: date-timeoccurred
At requiredWhen the underlying activity occurred (ISO 8601)
- Type: string | nullenumworkflowrequired
The Augment workflow that produced this event
values- T
R A C K _ A N D _ T R A C E - null
Responses
- 200
Event acknowledged
Request Example for post/TRANSIT_UPDATE
curl /TRANSIT_UPDATE \
--request POST \
--header 'Content-Type: application/json' \
--data '{
"id": "",
"workflow": "TRACK_AND_TRACE",
"occurredAt": "",
"loadNumber": "",
"brokerageLoadInternalId": "",
"eventType": "TRANSIT_UPDATE",
"data": {
"nextSequence": 1,
"nextEtaUtc": "",
"eventType": "PING",
"eventSource": "PHONE_EMAIL",
"eventUtc": "",
"city": "",
"stateOrProvince": "",
"latitude": 0,
"longitude": 0,
"notes": ""
}
}'
No Body