Off-Platform Shipment

Creates off-platform shipment with bulk upload


POST https://cargobase-check.prod.integration.us.axway.com:9443/off-platform-tracking

Purpose

It allows shippers to record and track shipments arranged outside the Cargobase platform, ensuring complete visibility and centralized reporting. Note: The shipment data will be sent as an array of shipment objects.

Access

An access token is required to POST to this end-point. Contact [[email protected]] to obtain your token.

Sample JSON

{
    "shipments": [
        {
            "shipment_title": "12345",
            "external_id": "12345",
            "custom_field_01": "Custom Value 01",
            "custom_field_02": "Custom Value 02",
            "custom_field_03": "Custom Value 03",
            "location": "Singapore",
            "freight_mode": "Air",
            "provider": "DHL",
            "provider_tracking_number": "DHL123456789",
            "mawb_number": "176-98765432",
            "mbl_number": null,
            "container_number": null,
            "truck_number": null,
            "pickup_company_name": "ABC Electronics Ltd.",
            "pickup_contact": "John Doe",
            "pickup_contact_phone": "+1-202-555-0143",
            "pickup_contact_email": "[email protected]",
            "pickup_address_line_1": "1234 Innovation Way",
            "pickup_address_line_2": "Suite 100",
            "pickup_zipcode": "94043",
            "pickup_city": "Mountain View",
            "pickup_state": "CA",
            "pickup_country": "USA",
            "delivery_company_name": "Tech Distribution Pte Ltd.",
            "delivery_contact": "Jane Tan",
            "delivery_contact_phone": "+65-6123-4567",
            "delivery_contact_email": "[email protected]",
            "delivery_address_line_1": "1 HarbourFront Walk",
            "delivery_address_line_2": "#03-02",
            "delivery_zipcode": "098585",
            "delivery_city": "Singapore",
            "delivery_state": null,
            "delivery_country": "Singapore"
        }
    ]
}

Shipment Information

Details that describe and identify the shipment itself.

Field Name Mandatory Value Description
shipment_titleYesstringBrief title or external shipment ID
external_idYesstringExternal shipment ID
locationYesstringPayment location of shipment
freight_modeYesstringMode of transport used for shipment
providerNostringLogistics service provider that handles the shipment

Tracking Numbers

Tracking identifiers based on freight mode.

Field Name Mandatory Value Description
provider_tracking_numberYesstringFor Parcel or Road freight
mawb_numberYesstringFor Regular air freight (e.g. 123-45678901)
mbl_numberYesstringFor Regular air freight (e.g. 123-45678901)
container_numberYesstringFor Ocean or Rail freight (e.g. ABCD1234567)
truck_numberYesstringFor Road freight

Pickup Details

Information about the pickup location and contacts.

Field Name Mandatory Value Description
pickup_company_nameYesstringName of the company responsible for pickup
pickup_contactNostringContact person for pickup
pickup_contact_phoneNostringPhone number for pickup contact
pickup_contact_emailNostringEmail for pickup contact
pickup_address_line_1NostringFirst line of pickup address
pickup_address_line_2NostringSecond line of pickup address
pickup_zipcodeNostringPostal code of pickup location
pickup_cityYesstringCity of pickup location
pickup_stateNostringState of pickup location
pickup_countryYesstringCountry of pickup location

Delivery Details

Information about the delivery location and contacts.

Field Name Mandatory Value Description
delivery_company_nameYesstringName of the company responsible for delivery
delivery_contactNostringContact person for delivery
delivery_contact_phoneNostringPhone number for delivery contact
delivery_contact_emailNostringEmail for delivery contact
delivery_address_line_1NostringFirst line of delivery address
delivery_address_line_2NostringSecond line of delivery address
delivery_zipcodeNostringPostal code of delivery location
delivery_cityYesstringCity of delivery location
delivery_stateNostringState of delivery location
delivery_countryYesstringCountry of delivery location