Optional

Human Assistance Requested

v1 equivalent: none. v2 only.

Sent when an Augment agent hands a load off to a human. contact is the person at your brokerage the agent routed the request to, so you can surface the handoff to the right queue or rep.

reasonCode says why the agent could not continue on its own.

Body·
required
application/json

Fields present on every v2 webhook event.

    • customerLoadInternalId
      Type: string | null
      required

      Your internal load ID, if provided during load creation

    • data
      Type: object ·
      required

      Human assistance request data payload.

    • eventType
      enum
      const:  
      HUMAN_ASSISTANCE_REQUESTED
      required

      Event name for a human-assistance request.

      values
      • HUMAN_ASSISTANCE_REQUESTED
    • id
      Type: string
      required

      Unique event identifier (ULID)

    • loadNumber
      Type: string | null
      required

      Your load reference number

    • occurredAt
      Type: string Format: date-time
      required

      When the underlying activity occurred (ISO 8601)

    • workflow
      Type: string | null enum
      required

      The Augment workflow that produced this event, or null when 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
      • TRACK_AND_TRACE
      • CARRIER_SUPPORT
      • POD_COLLECTION
      • LOAD_BUILDING
      • CARRIER_SELECTION
      • SCHEDULING
      • CUSTOMER_SUPPORT
      • null
Responses
  • 200

    Event acknowledged

Request Example for post/HUMAN_ASSISTANCE_REQUESTED
curl /HUMAN_ASSISTANCE_REQUESTED \
  --request POST \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "evt_01HZXK9P7QM3N8YV4TBWJC2RDQ",
  "workflow": "TRACK_AND_TRACE",
  "occurredAt": "2026-05-13T12:34:56Z",
  "loadNumber": "LOAD-456",
  "customerLoadInternalId": "INT-789",
  "eventType": "HUMAN_ASSISTANCE_REQUESTED",
  "data": {
    "reasonCode": "INSUFFICIENT_INFORMATION",
    "contact": {
      "name": "Sam Rep",
      "externalId": "REP-123",
      "email": "sam@brokerage.example",
      "phone": "+15559876543",
      "phoneExtension": null
    }
  }
}'
No Body