v1

latestOpenAPI 3.0.02026-07-2641142112.7 KB
Shipments

Get multiple shipments

Endpoint that searchs for shipments in the web application and returns the public shipment link.

post/public/shipments/search

Request body

shipmentNumbersstring[] required

Example request

{
  "shipmentNumbers": [
    "HLCUBO12208AXHI9"
  ]
}

Response

Successful response

notFoundResultsstring[]

If you search for a shipment that does not exist in your web application, it will appear in this list.

Example response

{
  "results": [
    {
      "id": "55aa63de-f8f6-41ac-a105-4f3bfb015bea",
      "shipmentNumber": "GCXU5630216",
      "sealine": "COSU",
      "sealineName": "COSCO",
      "link": "https://test-dev.safecube.ai/shared/shipment?token=85070eb8-1387-47cb-be2e-f05323ebab45"
    }
  ],
  "notFoundResults": []
}