Skip to main content

Get active shipments

GET 

/company/delivery/active

Retrieves a paginated list of the company's active shipments (statuses 'planned' and 'in_progress'). Requires JWT authentication.

Use Cases:

  • Monitor shipments in progress
  • View pending shipments awaiting execution
  • Manage logistics for active operations

Example of a successful response:

{
docs: [
{
service_code: DEL-67890,
status: in_progress,
etl_address: { /* loading address */ },
etd_address: { /* unloading address */ },
etl_date: 2025-08-08T10:00:00Z,
date_eta: 2025-08-09T18:00:00Z,
cargo_type: Perishable Food,
cargo_weight: 1200,
pallets_num: 24
}
],
totalDocs: 5,
limit: 10,
page: 1
}

Request

Responses

Active shipping list successfully retrieved.