Bid Created
Payload is identical in v1 and v2 — no migration needed for this event.
Augment POSTs this payload to your configured bid-created endpoint 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. Unlike tracking and stop-update callbacks, bid postbacks use a subscription-based delivery model — configuring the subscription and authentication is sufficient to start receiving bid data.
Each callback contains a single BidCreated payload representing one carrier interest or bid. offerAmount can be null.
Carrier interest or a carrier bid submitted for a load. Delivered via PUSH_BID_TO_TMS webhook subscription. This callback is sent when a carrier expresses interest, even if the carrier did not provide a dollar offer amount.
- Type: stringbid
Id requiredUnique identifier for the bid
- carrierrequired
Carrier that submitted the bid. At least one of
id,mcNumber, ordotNumbermust be present.Carrier that submitted the bid. At least one of
id,mcNumber, ordotNumbermust be present.- idType: string | nullrequired
Carrier identifier
- dotType: number | null
Number Carrier DOT number
- mcType: number | null
Number Carrier MC number
- channelrequired
Communication channel used for the bid. At least one of
phoneoremailmust be present.Communication channel used for the bid. At least one of
phoneoremailmust be present.- phoneType: string | nullrequired
Phone number (present for call-based bids)
- typeType: string enumrequired
Type of communication channel
values- call
- email
- emailType: string | null Format: email
Email address (present for email-based bids)
- Type: string Format: date-timecreated
At requiredUTC ISO 8601 timestamp ending in
Zof when the bid was created. - Type: stringinternal
Load Reference requiredAugment internal load reference
- Type: stringload
Reference requiredBrokerage load reference number
- Type: objecttruck
Empty requiredTruck empty location and availability
- Type: number | nulloffer
Amount Bid offer amount in dollars. This can be null when the carrier expressed interest but did not provide a dollar amount.
- Type: string | nullrep
Id Augment representative ID who facilitated the bid
- 200
Bid received successfully
{
"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"
}