Returns a list of all payees for the specified Broker.
Example response
{- "amount": 123.45,
- "carrier_payee": {
- "id": 87346,
- "payee_name": "Camila Trucking LLC",
- "is_verified": false
}, - "comment": "Load from Miami, Florida to Atlanta, Georgia.",
- "created_datetime": "2023-10-26T00:00:00+00:00",
- "eta": "2023-10-27T13:00:00+00:00",
- "id": 87346,
- "idempotency_key": "bac613de-5j27-1347-ka1n-q3p6173jacj4",
- "invoice_number": "355da12b-774b-41fc-9124-92d5f5a795ed",
- "payee": {
- "id": 87346,
- "payee_name": "Camila Trucking LLC",
- "funding_source_id": 87346,
- "is_verified": false,
- "is_factoring_company": true
}, - "payment_method": "ACH_NEXT_DAY",
- "po_number": "AP12345",
- "scheduled_for_date": "2023-10-29T00:00:00+00:00",
- "status": "SCHEDULED",
- "updated_datetime": "2023-10-26T00:00:00+00:00"
}Create a Payable. A Payable is an amount owed to a creditor with a scheduled date for a payment to be initiated.
Example response
{- "payee_id": 896876,
- "carrier_payee_id": 87346,
- "payment_method": "ACH_NEXT_DAY",
- "amount": "18.32",
- "scheduled_for_date": "2023-10-29T00:00:00+00:00",
- "invoice_number": "355da12b-774b-41fc-9124-92d5f5a795ed",
- "po_number": "AP12345",
- "idempotency_key": "bac613de-5j27-1347-ka1n-q3p6173jacj4"
}{- "id": 87346
}Retrieve a single Payable by its ID. A Payable represents a scheduled payment to a Payee for a specific amount.
A Payee is always one of two types, determined by the is_factoring_company flag:
Carrier (is_factoring_company: false): A transportation company that moves freight.
Carriers may have DOT and MC numbers for regulatory compliance.
Factoring Company (is_factoring_company: true): A financial entity that purchases
invoices from Carriers. When paying a Factoring Company, the carrier_payee field
identifies which Carrier the payment is on behalf of.
The carrier_payee field is null when paying a Carrier directly.
The status field will be one of: NEW, PENDING, PROCESSING, COMPLETE, CANCELLED, FAILED, SCHEDULED, DELETED, or UNKNOWN.
The payable was found and returned successfully.
The API key is missing or invalid.
The API key does not have access to the specified broker.
No payable was found with the specified ID for this broker.
{- "id": 986878,
- "amount": 3500,
- "status": "SCHEDULED",
- "payment_method": "PAPER_CHECK",
- "scheduled_for_date": "2026-04-09T00:00:00+00:00",
- "eta": "2026-04-10T16:30:00+00:00",
- "created_datetime": "2026-03-10T16:46:44.258001+00:00",
- "updated_datetime": "2026-03-10T16:46:44.323196+00:00",
- "invoice_number": "205960 / 205960",
- "po_number": "3491080",
- "idempotency_key": "d61163f8678d77f48c9947999456b1f2",
- "comment": "Load from Miami, FL to Atlanta, GA",
- "payee": {
- "id": 7401,
- "payee_name": "RTS Financial Service, Inc.",
- "funding_source_id": 22252,
- "is_verified": false,
- "is_factoring_company": true
}, - "carrier_payee": {
- "id": 7402,
- "payee_name": "ABC Trucking LLC",
- "is_verified": false
}
}Edit a Payable if it’s not already processing or completed.
Fields that can be updated
Example response
Bad Request
Unauthorized
Forbidden
Not Found
{- "amount": "18.32",
- "invoice_number": "355da12b-774b-41fc-9124-92d5f5a795ed",
- "po_number": "AP12345",
- "payee_id": 896876,
- "carrier_payee_id": 87346,
- "scheduled_for_date": "2023-10-29T00:00:00+00:00",
- "payment_method": "ACH_NEXT_DAY"
}{- "id": 87346
}