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
  • brokerageLoadInternalId
    Type: string | null
    required

    Optional internal load ID in the TMS. Use loadNumber as the main ID. Will be null if not provided.

  • loadNumber
    Type: string
    required

    The unique identifier for the load

  • stopUpdate
    Type: object
    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