Loads
Bounce carrier
Mark carrier as bounced (rejected load without payment).
What happens
- LoadCarrier status changes to BOUNCED
- Carrier is removed from active execution
- No payment is recorded
When to use
Use bounce when carrier rejects the load before dispatch, or fails to show up without prior notice.
For carriers who were dispatched but cancelled, use TONU instead.
post/loads/{loadId}/carriers/{carrierId}/bounce
Path parameters
loadIdstring required
carrierIdstring required
Request body
Response
Carrier bounced successfully
Example response
{
"carrier": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"key": "ERP-CARRIER-SWIFT",
"name": "Swift Transportation",
"phoneNumber": "+1-555-987-6543",
"email": "dispatch@swifttrans.com",
"createdAt": "2025-01-15T10:00:00Z",
"updatedAt": "2025-01-15T14:30:00Z"
},
"charges": [
{
"chargeCode": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"key": "ERP-USER-12345"
}
}
]
}