Bid Created
v1 equivalent:
bidCreated(flat payload — thedatafields 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 null for this event.
Common envelope fields shared by v2 webhook events. Each concrete event schema adds its own eventType and typed data payload.
- Type: string | nullcustomer
Load Internal Id requiredYour internal load ID, if provided during load creation
- Type: object ·datarequired
Bid data payload.
- enumevent
Type const:BID_CREATEDrequiredEvent name for a carrier bid.
values- B
I D _ C R E A T E D
- Type: stringidrequired
Unique event identifier (ULID)
- Type: string | nullload
Number requiredYour load reference number
- Type: string Format: date-timeoccurred
At requiredWhen the underlying activity occurred (ISO 8601)
- Type: string | null enumworkflowrequired
The Augment workflow that produced this event
values- T
R A C K _ A N D _ T R A C E - C
A R R I E R _ S U P P O R T - null
- 200
Bid received successfully
curl /BID_CREATED \
--request POST \
--header 'Content-Type: application/json' \
--data '{
"id": "01JN3GVAY1T1V8E5VFXY4N2K9X",
"workflow": null,
"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"
}
}'