Required

Bid Created

v1 equivalent: bidCreated (flat payload — the data fields below are sent at the top level, without the envelope).

Sent when a carrier expresses interest in a load, including when the carrier did not provide a dollar amount. Clients must configure a PUSH_BID_TO_TMS webhook subscription to receive these callbacks. offerAmount can be null. workflow is CARRIER_SELECTION.

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

      Bid data payload.

    • eventType
      enum
      const:  
      BID_CREATED
      required

      Event name for a carrier bid.

      values
      • BID_CREATED
    • 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

    Bid received successfully

Request Example for post/BID_CREATED
curl /BID_CREATED \
  --request POST \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "01JN3GVAY1T1V8E5VFXY4N2K9X",
  "workflow": "CARRIER_SELECTION",
  "occurredAt": "2026-02-19T14:30:00.000Z",
  "loadNumber": "LOAD-456",
  "customerLoadInternalId": "INT-789",
  "eventType": "BID_CREATED",
  "data": {
    "bidId": "bid-abc-123",
    "createdAt": "2026-02-19T14:30:00.000Z",
    "loadReference": "LOAD-456",
    "internalLoadReference": "INT-789",
    "carrier": {
      "id": "carrier-001",
      "mcNumber": 123456,
      "dotNumber": 7890123
    },
    "offerAmount": 2500,
    "channel": {
      "type": "call",
      "phone": "+15551234567"
    },
    "truckEmpty": {
      "city": "Dallas",
      "stateOrProvince": "TX",
      "country": "US",
      "dateTime": "2026-02-20T08:00:00.000Z"
    },
    "repId": "rep-456"
  }
}'
No Body