Get Shipment Container Details by Shipment Number

Overview

Use this endpoint to retrieve detailed information about Container linked with shipment based on its unique shipment number.

Endpoint

HTTP Method: GET

Endpoint URL: https://coreapi.impexdocs.com/api/v1/shipment/{shipmentdocs_id}/container

Authentication: Required

Response Format (Successfully Retrieved)

A successful retrieval will yield a JSON response containing the following details like:

  • Container number
  • Seal number
  • Tare Weight of Cargo
  • Tare Weight UOM
  • Net Weight UOM
  • and more...

Request Parameters

To fetch a shipment, provide the required field, which is the "Shipment Number" {shipment_no}. Alternatively, users can also pass the Shipment Docs Id {shipmentdocs_id} in place of the Shipment Number for retrieval.

Example

Request

GET https://coreapi.impexdocs.com/api/v1/shipment/{shipmentdocs_id}/container

Response

{
  "shipment_no": "ABC123",
  "shipmentdocs_id": "5a8ef9c4-dfd-4b09-bf51-faad55d94c41",
  "shipmentfolderdetail_id": "c2b9fdf0-4453-4deb-9ed7-e3141f80260a",
  "container_list":
  [
    {
    "container_number": "SKU238023",
    "seal_number": "FRE256453400_2",
    "seal_no_2": "HJHFU78748",
    "seal_no_3": "AYUY83948",
    "iso_size_type_code": "CD8790",
    "iso_size_type_desc": "string",
    "size": "12Ft",
        
  	//Additional Container Details
    },
    
    //Additional Containers
  ]  
}  

This example demonstrates a request to fetch the container details of a shipment with the provided shipment number. The response includes details such as the container number, seal number, size, and other container information.

Language
Credentials
Bearer
JWT
Click Try It! to start a request and see the response here!