Skip to content

Update Load

PUT /v2/tms-api/loads/{external_reference_id}

Update an existing load by its external reference ID.

Path Parameters

external_reference_idstringrequired
The load's external reference ID

Request Example

bash
curl -X PUT "https://api.mentium.io/v2/tms-api/loads/LOAD-001" \
  -H "X-API-Key: your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "status": "COVERED",
    "carrier_external_reference_id": "CARRIER-MIDWEST-001"
  }'

Response

200 OK

Returns the updated load object.

404 Not Found

json
{
  "detail": "Load with external_reference_id 'LOAD-001' not found"
}

Mentium TMS API Documentation