v1

latestOpenAPI 3.1.02026-07-246246106.8 KB
Manage your loads

Create Load Boost

Creates a new boost for an existing, active load. Load Boost temporarily promotes a load's visibility to carriers for a fixed 30-minute window. Only one active boost may exist per load at a time. Requires broker-level authorization.

post/loadmanagement/v2/load/boost

Request body

loadIdstring uuid required

The ID of the load to boost.

unboostedDatestring date-time nullable

Accepted in the request body but ignored on create. The server always sets the boost window to 30 minutes from request time.

Example request

{
  "loadId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}

Response

Load boost created successfully.

idstring uuid
loadIdstring uuid
userIdstring uuid
durationMinutesinteger

Boost duration in minutes. Default is 30.

boostedFromstring date-time

The moment the boost started in UTC.

boostedTostring date-time

The moment the boost ends in UTC.

createdDatestring date-time
updatedDatestring date-time
unboostedDatestring date-time nullable

Set when the boost is manually ended early via update. Null on fresh create.

Example response

{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "loadId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "userId": "d4e5f6a7-b8c9-0123-defa-456789012345",
  "durationMinutes": 30,
  "boostedFrom": "2026-03-03T14:00:00Z",
  "boostedTo": "2026-03-03T14:30:00Z",
  "createdDate": "2026-03-03T14:00:00Z",
  "updatedDate": "2026-03-03T14:00:00Z"
}