Required

Bid Created

Payload is identical in v1 and v2. This event uses its documented flat payload format instead of the Track & Trace event envelope.

Sent when Augment receives a carrier bid for a load. Clients must configure a PUSH_BID_TO_TMS webhook subscription to receive these callbacks.

Body·
required
application/json

A carrier bid submitted for a load. Delivered via PUSH_BID_TO_TMS webhook subscription.

  • bidId
    Type: string
    required

    Unique identifier for the bid

  • carrier
    required

    Carrier that submitted the bid. At least one of id, mcNumber, or dotNumber must be present.

    Carrier that submitted the bid. At least one of id, mcNumber, or dotNumber must be present.

    • id
      Type: string | null
      required

      Carrier identifier

    • dotNumber
      Type: number | null

      Carrier DOT number

    • mcNumber
      Type: number | null

      Carrier MC number

  • channel
    required

    Communication channel used for the bid. At least one of phone or email must be present.

    Communication channel used for the bid. At least one of phone or email must be present.

    • phone
      Type: string | null
      required

      Phone number (present for call-based bids)

    • email
      Type: string | nullFormat: email

      Email address (present for email-based bids)

    • type
      Type: stringenum

      Type of communication channel

      values
      • call
      • email
  • createdAt
    Type: stringFormat: date-time
    required

    ISO 8601 timestamp (with timezone offset) of when the bid was created

  • internalLoadReference
    Type: string
    required

    Augment internal load reference

  • loadReference
    Type: string
    required

    Brokerage load reference number

  • truckEmpty
    Type: object
    required

    Truck empty location and availability

  • offerAmount
    Type: number | null

    Bid offer amount in dollars

  • repId
    Type: string | null

    Augment representative ID who facilitated the bid

Responses
  • 200

    Bid received successfully

Request Example for post/bidCreated
curl /bidCreated \
  --request POST \
  --header 'Content-Type: application/json' \
  --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