Required
Carrier Info Update
v1 equivalent:
loadCarrierEvent(flat payload).
Sent when Augment obtains updated driver, truck, or trailer information from a carrier. This may include the driver's name and phone number, truck and trailer numbers, or a Bill of Lading number.
Body·
required
application/json
Fields present on every v2 webhook event.
- Type: string | nullcustomer
Load Internal Id requiredYour internal load ID, if provided during load creation
- Type: object ·datarequired
Carrier information update data payload.
- enumevent
Type const:LOAD_CARRIER_UPDATErequiredEvent name for a carrier information update.
values- L
O A D _ C A R R I E R _ U P D A T E
- Type: stringidrequired
Unique event identifier (ULID)
- Type: string | nullload
Number requiredYour load reference number
- Type: string Format: date-timeoccurred
At requiredWhen the underlying activity occurred (ISO 8601)
- Type: string | null enumworkflowrequired
The Augment workflow that produced this event, or
nullwhen no single workflow can be attributed. New values may be added over time, so treat this as an open set rather than a fixed list.values- T
R A C K _ A N D _ T R A C E - C
A R R I E R _ S U P P O R T - P
O D _ C O L L E C T I O N - L
O A D _ B U I L D I N G - C
A R R I E R _ S E L E C T I O N - S
C H E D U L I N G - C
U S T O M E R _ S U P P O R T - null
Responses
- 200
Event acknowledged
Request Example for post/LOAD_CARRIER_UPDATE
curl /LOAD_CARRIER_UPDATE \
--request POST \
--header 'Content-Type: application/json' \
--data '{
"id": "",
"workflow": "TRACK_AND_TRACE",
"occurredAt": "",
"loadNumber": "",
"customerLoadInternalId": "",
"eventType": "LOAD_CARRIER_UPDATE",
"data": {
"driverName": "",
"driverPhoneNumber": "",
"truckNumber": "",
"trailerNumber": "",
"bolNumber": "",
"source": "EMAIL",
"notes": ""
}
}'
No Body