loads

Get a List of All Loads

Return a list of all Loads associated with a Broker.

Securityx-api-key
Request
header Parameters
broker-id
required
integer (broker_id)

The id of the broker

Example: 66305
Responses
200

Example response

get/loads
Request samples
Response samples
application/json
[
  • {
    }
]

Create a Load

Create a Load.

Securityx-api-key
Request
header Parameters
broker-id
required
integer (broker_id)

The id of the broker

Example: 66305
Request Body schema: application/json
load_number
string (loadNumber)

The Load Number

amount
number (amount)

Money in USD to transfer or has been transferred.

external_id
string (external_id)

A unique identifier you have for the item.

payee_id
integer (payee_id)

The unique identifier of the Payee who will receive the funds. It could be a Carrier or a Factoring Company.

Responses
201

Example response

400

Bad Request

409

Conflict

post/loads
Request samples
application/json
{
  • "load_number": "abc12234",
  • "amount": 123.45,
  • "external_id": "14973-83",
  • "payee_id": 896876
}
Response samples
application/json
{
  • "id": 87346
}

Get a single Load

Return a single Load associated with a Broker.

Securityx-api-key
Request
path Parameters
load_id
required
string
header Parameters
broker-id
required
integer (broker_id)

The id of the broker

Example: 66305
Responses
200

Example response

get/loads/{load_id}
Request samples
Response samples
application/json
{
  • "id": 87346,
  • "amount": 123.45,
  • "status": "PENDING",
  • "created_datetime": "2023-10-26T00:00:00+00:00",
  • "updated_datetime": "2023-10-26T00:00:00+00:00",
  • "payee": {
    },
  • "carrier_payee": {
    },
  • "payable": {
    }
}
Copyright © RoadSync 2023. All right reserved.