Skip to main content

Edit delivery

PUT 

/company/delivery/:service_code

Updates the details of an existing shipment. Only certain fields can be modified depending on the shipment's current status. Requires JWT authentication.

Use Cases:

  • Modify load/unload dates for planned shipments
  • Update cargo details (weight, type, pallets)
  • Correct load/unload addresses

Request Example:

{
etl_date: 2025-08-10T08:00:00Z,
etd_date: 2025-08-11T12:00:00Z,
cargo_weight: 750,
pallets_num: 15
}

Restrictions:

  • For 'planned' shipments: Any field except service_code can be modified
  • For 'in_progress' shipments: Only etd_date and date_eta can be updated
  • Completed/canceled shipments: Cannot be modified

Request

Responses

Shipment updated successfully