GET
/
api
/
v1
/
bids
List bids
curl --request GET \
  --url https://api.fleetworks.ai/api/v1/bids \
  --header 'Authorization: Bearer <token>'
{
  "salesBids": [
    {
      "loadId": 123,
      "originLocation": "<string>",
      "destinationLocation": "<string>",
      "carrierMc": "<string>",
      "carrierDot": "<string>",
      "phoneNumber": "<string>",
      "extension": "<string>",
      "callerName": "<string>",
      "callSummary": "<string>",
      "callDateTime": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

An authentication token that identifies the organization associated with the event. You can reach out to FleetWorks team to request a token.

Query Parameters

startTime
string<date>
required

Start time for bids list in ISO8601 format

endTime
string<date>
required

End time for bids list in ISO8601 format

loadId
string

Optional load ID to filter bids

mcNumber
string

Optional MC number to filter bids

offset
number
default:0

Pagination offset

Required range: x >= 0
limit
number
default:100

Pagination limit

Required range: 1 <= x <= 500

Response

200
application/json

Success

The response is of type object.