Bid Created
This endpoint is called when Augment receives a carrier bid for a load. 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 bid.
A carrier bid submitted for a load. Delivered via PUSH_BID_TO_TMS webhook subscription.
- Type: string
bid Id requiredUnique identifier for the bid
carrier requiredCarrier that submitted the bid. At least one of
id,mcNumber, ordotNumbermust be present.- Type: string | null
id requiredCarrier identifier
- Type: number | null
dot Number Carrier DOT number
- Type: number | null
mc Number Carrier MC number
channel requiredCommunication channel used for the bid. At least one of
phoneoremailmust be present.- Type: string | null
phone requiredPhone number (present for call-based bids)
- Type: string | nullFormat: email
email Email address (present for email-based bids)
- Type: stringenum
type Type of communication channel
valuescall email
- Type: stringFormat: date-time
created At requiredISO 8601 timestamp (with timezone offset) of when the bid was created
- Type: string
internal Load Reference requiredAugment internal load reference
- Type: string
load Reference requiredBrokerage load reference number
- Type: object
truck Empty requiredTruck empty location and availability
- Type: number | null
offer Amount Bid offer amount in dollars
- Type: string | null
rep Id Augment representative ID who facilitated the bid
200 Bid received successfully
curl https://api.prod.goaugment.com/callback/bid-created \
--request POST \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic username:password' \
--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"
}'

