Optional
Scheduled Carrier Outreach
v1 equivalent:
scheduledCarrierOutreach(flat payload).
Sent when Augment schedules a future Track & Trace carrier outreach for a load. Clients must configure a SCHEDULED_CARRIER_OUTREACH webhook subscription to receive these events.
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
Scheduled carrier outreach received successfully
Request Example for post/SCHEDULED_CARRIER_OUTREACH
curl /SCHEDULED_CARRIER_OUTREACH \
--request POST \
--header 'Content-Type: application/json' \
--data '{
"id": "",
"workflow": "TRACK_AND_TRACE",
"occurredAt": "",
"loadNumber": "",
"brokerageLoadInternalId": "",
"eventType": "SCHEDULED_CARRIER_OUTREACH",
"data": {
"scheduledAt": "2025-08-21T12:34:56Z",
"outreachType": "PHONE_CALL",
"context": "Follow up on delivery ETA"
}
}'
No Body