Bill Payments
Create a bill payment
Record a payment for one or more carrier/vendor bills.
What happens
- PaymentGroup record is created
- Payment applications are created for each bill
- Bill open balances are reduced
- Load/service status updates to PAID when fully paid
Carrier factor payments
To pay a carrier's factor instead of the carrier directly, specify carrierFactorId in the request.
Overpayments
If allowOverpayment is true and payment exceeds bill totals, a credit memo is automatically created for the difference.
post/bill-payments
Request body
Response
Bill payment created successfully
Example response
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"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"
},
"vendor": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"key": "ERP-VENDOR-ABC-001",
"friendlyId": "V123456",
"name": "ABC Warehouse Services",
"email": "billing@abcwarehouse.com",
"phone": "+1-555-123-4567",
"status": "ACTIVE",
"currency": "USD",
"createdAt": "2025-01-15T10:00:00Z",
"updatedAt": "2025-01-15T14:30:00Z"
}
}