Webhook
Stop Update
v2 equivalent:
STOP_UPDATE(uses shared event envelope).
Augment POSTs this payload to your configured stop-update endpoint when Augie obtains an update to a specific stop on a load (arrival, unload, or departure). Implement a listener at the URL you provide to Augment to receive these updates.
Body·
required
application/json
- Type: string | nullbrokerage
Load Internal Id requiredOptional internal load ID in the TMS. Use loadNumber as the main ID. Will be null if not provided.
- Type: stringload
Number requiredThe unique identifier for the load
- Type: objectstop
Update required
Responses
- 200
Load updated successfully
Request Example for poststopUpdate
{
"loadNumber": "",
"brokerageLoadInternalId": null,
"stopUpdate": {
"stopSequenceNumber": 1,
"stopId": "",
"status": "AT_PICKUP",
"arrivalTime": null,
"unloadStartTime": null,
"unloadEta": null,
"departureTime": null,
"timezone": "America/Chicago",
"accessorials": [
"AFTER_HOURS"
],
"dockDoor": "",
"notes": ""
}
}
No Body