Download OpenAPI specification:
This API lets you fetch your data from OVRSEA's servers.
To safely access the resources exposed by our API, you will need to provide an authenticated token in your requests headers. Please reach out to your OVRSEA’s Account Manager to get your token.
Name of the header | Type of authentication |
---|---|
Authorization | API AUTHORIZATION KEY |
Please note that the API authorization key must be prefixed with "Bearer "
For example:
Authorization: Bearer 1234567890
All endpoints fetching multiple items are paginated.
Use skip
to skip to the items you want to retrieve.
Use take
to define how many items you want to retrieve.
skip
and take
are optional parameters.
If you do not input them, skip
equals to 0 and take
equals to 10.
Example:
/v1/shipments?skip=20&take=10
Fetch all shipments of the account
skip | integer Default: 0 |
take | integer <= 100 Default: 10 |
[- {
- "name": "June Air Export USA",
- "ovrsea_shipment_id": "CDEF",
- "status": "booking_request",
- "created_at": "2021-09-20T10:02:09+01:00",
- "incoterm": "fob",
- "freight_mode": "air",
- "load_type": "fcl",
- "freight_type": "port_to_door",
- "route": {
- "pickup_location_id": "23",
- "origin_port_unlocode": "FR/FOS",
- "destination_port_unlocode": "US/NYC",
- "delivery_location_id": "45"
}, - "cargo_ready_date": "2021-10-11",
- "desired_delivery_date": "2021-10-11",
- "specific_instructions": "string",
- "cargo": {
- "total_weight": {
- "value": 350.25,
- "unit": "kg"
}, - "total_volume": {
- "value": 10.25,
- "unit": "cbm"
}, - "total_teus": 5,
- "containers": [
- {
- "container_type": "twenty_foot_standard",
- "container_number": "TEMU8667058",
- "seal_number": 1332641,
- "purchase_order_references": [
- 4500346155
]
}
], - "loads": [
- {
- "count": 3,
- "type": "pallet",
- "weight": {
- "value": 350.25,
- "unit": "kg"
}, - "volume_unit": "cm",
- "length": {
- "value": 10.25,
- "unit": "cm"
}, - "width": {
- "value": 10.25,
- "unit": "cm"
}, - "height": {
- "value": 10.25,
- "unit": "cm"
}
}
]
}, - "transported_goods": {
- "goods_description": "Description of the shipped goods",
- "is_stackable": true,
- "is_hazardous": false,
- "hazardous_description": "UN1993",
- "contains_lithium": false,
- "lithium_packaging_type": "alone",
- "contains_magnets": false,
- "needs_controlled_temperature": false,
- "temperature_range_description": "5-25°C"
}, - "commercial_value": {
- "amount": 150357.99,
- "currency": "USD"
}, - "needs_ad_valorem_insurance": false,
- "purchase_order_references": [
- 4500346155
], - "main_tracking_dates": {
- "pickup_date": {
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}, - "departure_date": {
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}, - "arrival_date": {
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}, - "delivery_date": {
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}
}, - "booking_information": {
- "carrier": "CMA CGM",
- "master_bill": "LHV1190703558",
- "house_bill": "HOUSEREF12357",
- "ocean_booking": {
- "booking_number": "TWLEH2106004",
- "voyage": "033E",
- "vessel": "CMA CGM Jacques Saadé"
}, - "air_booking": {
- "flight_number": "AF256",
- "chargeable_weight": {
- "value": 350.25,
- "unit": "kg"
}
}
}, - "invoice_status": "available",
- "invoice_references": [
- "FAC2022-9567"
], - "accepted_quote": {
- "id": "325",
- "request_date": "2021-09-20T10:02:09+01:00",
- "accepted_date": "2021-09-20T10:02:09+01:00"
}
}
]
Fetch a shipment given its OVRSEA shipment id
ovrsea_shipment_id required | string |
{- "name": "June Air Export USA",
- "ovrsea_shipment_id": "CDEF",
- "status": "booking_request",
- "created_at": "2021-09-20T10:02:09+01:00",
- "incoterm": "fob",
- "freight_mode": "air",
- "load_type": "fcl",
- "freight_type": "port_to_door",
- "route": {
- "pickup_location_id": "23",
- "origin_port_unlocode": "FR/FOS",
- "destination_port_unlocode": "US/NYC",
- "delivery_location_id": "45"
}, - "cargo_ready_date": "2021-10-11",
- "desired_delivery_date": "2021-10-11",
- "specific_instructions": "string",
- "cargo": {
- "total_weight": {
- "value": 350.25,
- "unit": "kg"
}, - "total_volume": {
- "value": 10.25,
- "unit": "cbm"
}, - "total_teus": 5,
- "containers": [
- {
- "container_type": "twenty_foot_standard",
- "container_number": "TEMU8667058",
- "seal_number": 1332641,
- "purchase_order_references": [
- 4500346155
]
}
], - "loads": [
- {
- "count": 3,
- "type": "pallet",
- "weight": {
- "value": 350.25,
- "unit": "kg"
}, - "volume_unit": "cm",
- "length": {
- "value": 10.25,
- "unit": "cm"
}, - "width": {
- "value": 10.25,
- "unit": "cm"
}, - "height": {
- "value": 10.25,
- "unit": "cm"
}
}
]
}, - "transported_goods": {
- "goods_description": "Description of the shipped goods",
- "is_stackable": true,
- "is_hazardous": false,
- "hazardous_description": "UN1993",
- "contains_lithium": false,
- "lithium_packaging_type": "alone",
- "contains_magnets": false,
- "needs_controlled_temperature": false,
- "temperature_range_description": "5-25°C"
}, - "commercial_value": {
- "amount": 150357.99,
- "currency": "USD"
}, - "needs_ad_valorem_insurance": false,
- "purchase_order_references": [
- 4500346155
], - "main_tracking_dates": {
- "pickup_date": {
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}, - "departure_date": {
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}, - "arrival_date": {
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}, - "delivery_date": {
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}
}, - "booking_information": {
- "carrier": "CMA CGM",
- "master_bill": "LHV1190703558",
- "house_bill": "HOUSEREF12357",
- "ocean_booking": {
- "booking_number": "TWLEH2106004",
- "voyage": "033E",
- "vessel": "CMA CGM Jacques Saadé"
}, - "air_booking": {
- "flight_number": "AF256",
- "chargeable_weight": {
- "value": 350.25,
- "unit": "kg"
}
}
}, - "invoice_status": "available",
- "invoice_references": [
- "FAC2022-9567"
], - "accepted_quote": {
- "id": "325",
- "request_date": "2021-09-20T10:02:09+01:00",
- "accepted_date": "2021-09-20T10:02:09+01:00"
}
}
Fetch a shipment's tracking with its OVRSEA shipment id.
ovrsea_shipment_id required | string |
{- "ovrsea_shipment_id": "BATE",
- "status": "string",
- "tracking_steps": [
- {
- "type": "location",
- "location": {
- "id": 12345,
- "company_name": "Logistics WorldWide Co",
- "name": "Saint Quentin warehouse",
- "address": "357 allée des Tilleuls",
- "city": "Saint Quentin Fallavier",
- "zip_code": 69300,
- "country": "FR",
- "contacts": [
- {
- "name": "Thierry Henriet",
- "email": "log@patagonia.com",
- "phone": 33134567891
}
], - "opening_hours": "Monday to Friday 8am to 5pm",
- "requires_appointment": true,
- "requires_tailgate_truck": false,
- "additional_information": "Please avoid Friday after 4pm"
}, - "port": {
- "unlocode": "FR/LEH",
- "city": "Le Havre",
- "country": "FR"
}, - "events": [
- {
- "description": "Loaded on Vessel",
- "container_number": "MSDU8878398",
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}
]
}
], - "ocean_coordinates": [
- {
- "latitude": "48.858093",
- "longitude": "2.294694"
}
]
}
Fetch all purchase orders
skip | integer Default: 0 |
take | integer <= 100 Default: 10 |
[- {
- "po_number": "PO5792303",
- "supplier_name": "Detroit Factory",
- "purchase_order_lines": [
- {
- "reference": "Delivery #1",
- "product": {
- "sku": "REF0123458",
- "name": "blue t-shirt",
- "hs_code": "96032930",
- "description": "blue shirt with a T shape",
- "is_hazardous": "false",
- "hazardous_description": "UN1993",
- "custom_parameters": [
- {
- "name": "parameter1",
- "value": "value1"
}
]
}, - "ordered_quantity": 500,
- "unit_price": {
- "amount": 150357.99,
- "currency": "USD"
}, - "assigned_order_lines": [
- {
- "ovrsea_shipment_id": "BATE",
- "shipment_status": "booking_request",
- "assigned_quantity": 200,
- "shipped_order_lines": [
- {
- "container_number": "HLCU1234567",
- "shipped_quantity": 150,
- "packaging_total_volume": 5,
- "number_of_packages": 10,
- "packaging_type": "box",
- "net_weight": 100,
- "gross_weight": 110,
- "volume_unit": "m3",
- "weight_unit": "kg"
}
]
}
]
}
], - "desired_ex_factory_date": "2021-10-11",
- "desired_delivery_date": "2021-10-11",
- "custom_parameters": [
- {
- "name": "parameter1",
- "value": "value1"
}
]
}
]
Create a purchase order with the information provided
Array of objects | |
desired_delivery_date | string (SimpleDate) |
desired_ex_factory_date | string (SimpleDate) |
required | Array of objects |
reference required | string |
supplier_id required | string |
{- "custom_parameters": [
- {
- "name": "parameter1",
- "value": "value1"
}
], - "desired_delivery_date": "2021-10-11",
- "desired_ex_factory_date": "2021-10-11",
- "product_lines": [
- {
- "ordered_quantity": 24,
- "product": {
- "sku": "REF0123458",
- "hs_code": "96032930",
- "description": "blue shirt with a T shape",
- "is_hazardous": "false",
- "hazardous_description": "UN1993",
- "custom_parameters": [
- {
- "name": "parameter1",
- "value": "value1"
}
]
}, - "reference": "Delivery #1",
- "unit_price": {
- "amount": 150357.99,
- "currency": "USD"
}, - "volume": 15,
- "volume_unit": "m3"
}
], - "reference": "PO5792303",
- "supplier_id": "Detroit Factory"
}
{- "reference": "string"
}
Updates a purchase order with the information provided. The existing product quantities and details will be overridden with the information provided. The update is forbidden if the Purchase Order is already associated to a shipment.
required | Array of objects |
reference required | string |
{- "product_lines": [
- {
- "ordered_quantity": 24,
- "product": {
- "sku": "REF0123458",
- "hs_code": "96032930",
- "description": "blue shirt with a T shape",
- "is_hazardous": "false",
- "hazardous_description": "UN1993",
- "custom_parameters": [
- {
- "name": "parameter1",
- "value": "value1"
}
]
}, - "reference": "Delivery #1",
- "unit_price": {
- "amount": 150357.99,
- "currency": "USD"
}, - "volume": 15,
- "volume_unit": "m3"
}
], - "reference": "PO5792303"
}
{- "reference": "string"
}
Fetch a purchase order with its reference
reference required | string |
{- "po_number": "PO5792303",
- "supplier_name": "Detroit Factory",
- "purchase_order_lines": [
- {
- "reference": "Delivery #1",
- "product": {
- "sku": "REF0123458",
- "name": "blue t-shirt",
- "hs_code": "96032930",
- "description": "blue shirt with a T shape",
- "is_hazardous": "false",
- "hazardous_description": "UN1993",
- "custom_parameters": [
- {
- "name": "parameter1",
- "value": "value1"
}
]
}, - "ordered_quantity": 500,
- "unit_price": {
- "amount": 150357.99,
- "currency": "USD"
}, - "assigned_order_lines": [
- {
- "ovrsea_shipment_id": "BATE",
- "shipment_status": "booking_request",
- "assigned_quantity": 200,
- "shipped_order_lines": [
- {
- "container_number": "HLCU1234567",
- "shipped_quantity": 150,
- "packaging_total_volume": 5,
- "number_of_packages": 10,
- "packaging_type": "box",
- "net_weight": 100,
- "gross_weight": 110,
- "volume_unit": "m3",
- "weight_unit": "kg"
}
]
}
]
}
], - "desired_ex_factory_date": "2021-10-11",
- "desired_delivery_date": "2021-10-11",
- "custom_parameters": [
- {
- "name": "parameter1",
- "value": "value1"
}
]
}
Fetch all your documents, or all documents associated to one of your shipments.
ovrsea_shipment_id | string |
skip | integer Default: 0 |
take | integer <= 100 Default: 10 |
[- {
- "id": "12345",
- "name": "packing-list-export.pdf",
- "type": null,
- "ovrsea_shipment_id": "CDEF",
- "size": 20000,
- "uploaded_at": "2021-10-11"
}
]
{- "id": "12345",
- "name": "packing-list-export.pdf",
- "type": null,
- "ovrsea_shipment_id": "CDEF",
- "size": 20000,
- "uploaded_at": "2021-10-11"
}
This endpoint returns all the locations of the account.
skip | integer Default: 0 |
take | integer <= 100 Default: 10 |
[- {
- "id": 12345,
- "company_name": "Logistics WorldWide Co",
- "name": "Saint Quentin warehouse",
- "address": "357 allée des Tilleuls",
- "city": "Saint Quentin Fallavier",
- "zip_code": 69300,
- "country": "FR",
- "contacts": [
- {
- "name": "Thierry Henriet",
- "email": "log@patagonia.com",
- "phone": 33134567891
}
], - "opening_hours": "Monday to Friday 8am to 5pm",
- "requires_appointment": true,
- "requires_tailgate_truck": false,
- "additional_information": "Please avoid Friday after 4pm"
}
]
This endpoint returns the location corresponding to the given ID.
id required | string |
{- "id": 12345,
- "company_name": "Logistics WorldWide Co",
- "name": "Saint Quentin warehouse",
- "address": "357 allée des Tilleuls",
- "city": "Saint Quentin Fallavier",
- "zip_code": 69300,
- "country": "FR",
- "contacts": [
- {
- "name": "Thierry Henriet",
- "email": "log@patagonia.com",
- "phone": 33134567891
}
], - "opening_hours": "Monday to Friday 8am to 5pm",
- "requires_appointment": true,
- "requires_tailgate_truck": false,
- "additional_information": "Please avoid Friday after 4pm"
}
This endpoint returns all the invoices of the account.
skip | integer Default: 0 |
take | integer <= 100 Default: 10 |
[- {
- "reference": "CDEF - 0342/7055 2022",
- "number": "FAC2022-9567",
- "ovrsea_shipment_id": "CDEF",
- "type": "invoice",
- "status": "available",
- "sent_date": "2021-09-20T10:02:09+01:00",
- "due_date": "2021-10-11",
- "lines": [
- {
- "category": "arrival_customs",
- "description": "IMO Surcharge",
- "price": {
- "amount": 150357.99,
- "currency": "USD"
}, - "quantity": {
- "value": 350.25,
- "unit": "tc"
}, - "unit_rate": {
- "amount": 150357.99,
- "currency": "USD"
}, - "vatRate": 20
}
], - "usd_to_eur_rate": 0.82
}
]
This endpoint returns the invoice corresponding to the given number.
reference required | string |
{- "reference": "CDEF - 0342/7055 2022",
- "number": "FAC2022-9567",
- "ovrsea_shipment_id": "CDEF",
- "type": "invoice",
- "status": "available",
- "sent_date": "2021-09-20T10:02:09+01:00",
- "due_date": "2021-10-11",
- "lines": [
- {
- "category": "arrival_customs",
- "description": "IMO Surcharge",
- "price": {
- "amount": 150357.99,
- "currency": "USD"
}, - "quantity": {
- "value": 350.25,
- "unit": "tc"
}, - "unit_rate": {
- "amount": 150357.99,
- "currency": "USD"
}, - "vatRate": 20
}
], - "usd_to_eur_rate": 0.82
}
[- {
- "Sku - Product Reference": "string",
- "Shipment Name": "string",
- "OVRSEA id": "string",
- "Quantity": 0,
- "Planned Arrival Date (Destination Port)": "string",
- "Planned Delivery Date": "string",
- "Port of Loading": "string",
- "Port of Discharge": "string",
- "Freight Mode": "string",
- "Shipment Status": "string",
- "Parties involved": "string",
- "Total shipment cost per unit": 0,
- "Total shipment CO2e emissions per unit (kg)": 0,
- "property1": "string",
- "property2": "string"
}
]
name | string |
ovrsea_shipment_id | string |
status | string Enum: "booking_request" "awaiting_booking" "booked" "draft" "in_progress" "finished" "cancelled" |
created_at | string (DateWithTime) |
incoterm | string Enum: "exw" "fca" "fas" "fob" "cpt" "cfr" "cif" "cip" "dap" "ddp" "dpu" "dat" |
freight_mode | string Enum: "air" "ocean" "rail" "truck" |
load_type | string Enum: "fcl" "lcl" "both" |
freight_type | string Enum: "port_to_door" "door_to_port" "door_to_door" "port_to_port" |
object | |
cargo_ready_date | string (SimpleDate) |
desired_delivery_date | string (SimpleDate) |
specific_instructions | string Optional field containing specific instruction given by the client |
object | |
object | |
object (Price) | |
needs_ad_valorem_insurance | boolean Default: false |
purchase_order_references | Array of strings |
object | |
object | |
invoice_status | string Enum: "available" "awaiting_invoice" "due" "paid" "partially_paid" |
invoice_references | Array of strings |
object |
{- "name": "June Air Export USA",
- "ovrsea_shipment_id": "CDEF",
- "status": "booking_request",
- "created_at": "2021-09-20T10:02:09+01:00",
- "incoterm": "fob",
- "freight_mode": "air",
- "load_type": "fcl",
- "freight_type": "port_to_door",
- "route": {
- "pickup_location_id": "23",
- "origin_port_unlocode": "FR/FOS",
- "destination_port_unlocode": "US/NYC",
- "delivery_location_id": "45"
}, - "cargo_ready_date": "2021-10-11",
- "desired_delivery_date": "2021-10-11",
- "specific_instructions": "string",
- "cargo": {
- "total_weight": {
- "value": 350.25,
- "unit": "kg"
}, - "total_volume": {
- "value": 10.25,
- "unit": "cbm"
}, - "total_teus": 5,
- "containers": [
- {
- "container_type": "twenty_foot_standard",
- "container_number": "TEMU8667058",
- "seal_number": 1332641,
- "purchase_order_references": [
- 4500346155
]
}
], - "loads": [
- {
- "count": 3,
- "type": "pallet",
- "weight": {
- "value": 350.25,
- "unit": "kg"
}, - "volume_unit": "cm",
- "length": {
- "value": 10.25,
- "unit": "cm"
}, - "width": {
- "value": 10.25,
- "unit": "cm"
}, - "height": {
- "value": 10.25,
- "unit": "cm"
}
}
]
}, - "transported_goods": {
- "goods_description": "Description of the shipped goods",
- "is_stackable": true,
- "is_hazardous": false,
- "hazardous_description": "UN1993",
- "contains_lithium": false,
- "lithium_packaging_type": "alone",
- "contains_magnets": false,
- "needs_controlled_temperature": false,
- "temperature_range_description": "5-25°C"
}, - "commercial_value": {
- "amount": 150357.99,
- "currency": "USD"
}, - "needs_ad_valorem_insurance": false,
- "purchase_order_references": [
- 4500346155
], - "main_tracking_dates": {
- "pickup_date": {
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}, - "departure_date": {
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}, - "arrival_date": {
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}, - "delivery_date": {
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}
}, - "booking_information": {
- "carrier": "CMA CGM",
- "master_bill": "LHV1190703558",
- "house_bill": "HOUSEREF12357",
- "ocean_booking": {
- "booking_number": "TWLEH2106004",
- "voyage": "033E",
- "vessel": "CMA CGM Jacques Saadé"
}, - "air_booking": {
- "flight_number": "AF256",
- "chargeable_weight": {
- "value": 350.25,
- "unit": "kg"
}
}
}, - "invoice_status": "available",
- "invoice_references": [
- "FAC2022-9567"
], - "accepted_quote": {
- "id": "325",
- "request_date": "2021-09-20T10:02:09+01:00",
- "accepted_date": "2021-09-20T10:02:09+01:00"
}
}
container_type | string Enum: "twenty_foot_standard" "twenty_foot_reefer" "twenty_foot_flat_rack" "twenty_foot_open_top" "forty_foot_standard" "forty_foot_reefer" "forty_foot_flat_rack" "forty_foot_open_top" "forty_foot_highcube_standard" "forty_foot_highcube_reefer" "forty_foot_highcube_flat_rack" "forty_foot_highcube_open_top" "forty_five_foot_highcube_standard" |
container_number | string |
seal_number | string |
purchase_order_references | Array of strings |
{- "container_type": "twenty_foot_standard",
- "container_number": "TEMU8667058",
- "seal_number": 1332641,
- "purchase_order_references": [
- 4500346155
]
}
id | string |
name | string |
type | string Enum: null "packing_list" "commercial_invoice" "master_bill_of_lading" "house_bill_of_lading" "master_airway_bill" "house_airway_bill" "proof_of_delivery" "dangerous_goods_declaration" "material_safety_data_sheet" "exa" "cmr" "ima" "power_of_attorney_customs_declaration" "power_of_attorney_eur1" "eur1" "entry_summary" "t1" "cargo_manifest" "cargo_screening" "lithium_certificate" |
ovrsea_shipment_id | string |
link | string |
size | integer |
uploaded_at | string (SimpleDate) |
{- "id": "12345",
- "name": "packing-list-export.pdf",
- "type": null,
- "ovrsea_shipment_id": "CDEF",
- "size": 20000,
- "uploaded_at": "2021-10-11"
}
reference | string |
number | string |
ovrsea_shipment_id | string |
type | string Default: "invoice" Enum: "invoice" "credit_note" |
status | string Enum: "available" "due" "in_modification" "litigious" "new" "paid" "partially_paid" "write_off" |
sent_date | string (DateWithTime) |
due_date | string (SimpleDate) |
Array of objects | |
usd_to_eur_rate | number <float> |
{- "reference": "CDEF - 0342/7055 2022",
- "number": "FAC2022-9567",
- "ovrsea_shipment_id": "CDEF",
- "type": "invoice",
- "status": "available",
- "sent_date": "2021-09-20T10:02:09+01:00",
- "due_date": "2021-10-11",
- "lines": [
- {
- "category": "arrival_customs",
- "description": "IMO Surcharge",
- "price": {
- "amount": 150357.99,
- "currency": "USD"
}, - "quantity": {
- "value": 350.25,
- "unit": "tc"
}, - "unit_rate": {
- "amount": 150357.99,
- "currency": "USD"
}, - "vatRate": 20
}
], - "usd_to_eur_rate": 0.82
}
count | number |
type | string <LoadType> Enum: "pallet" "package" "rigid_crate" |
object (Weight) Weight | |
volume_unit | string (deprecated) |
object (Size) Size | |
object (Size) Size | |
object (Size) Size |
{- "count": 3,
- "type": "pallet",
- "weight": {
- "value": 350.25,
- "unit": "kg"
}, - "volume_unit": "cm",
- "length": {
- "value": 10.25,
- "unit": "cm"
}, - "width": {
- "value": 10.25,
- "unit": "cm"
}, - "height": {
- "value": 10.25,
- "unit": "cm"
}
}
id | string |
company_name | string |
name | string |
address | string |
city | string |
zip_code | string |
country | string |
Array of objects | |
opening_hours | string |
requires_appointment | boolean Specifies if appointments are required for loading and unloading at this location. |
requires_tailgate_truck | boolean Specifies if liftgate trucks are required for this location. |
additional_information | string |
{- "id": 12345,
- "company_name": "Logistics WorldWide Co",
- "name": "Saint Quentin warehouse",
- "address": "357 allée des Tilleuls",
- "city": "Saint Quentin Fallavier",
- "zip_code": 69300,
- "country": "FR",
- "contacts": [
- {
- "name": "Thierry Henriet",
- "email": "log@patagonia.com",
- "phone": 33134567891
}
], - "opening_hours": "Monday to Friday 8am to 5pm",
- "requires_appointment": true,
- "requires_tailgate_truck": false,
- "additional_information": "Please avoid Friday after 4pm"
}
unlocode | string |
city | string |
country | string |
{- "unlocode": "FR/LEH",
- "city": "Le Havre",
- "country": "FR"
}
amount | number <float> |
currency | string Enum: "AED" "AUD" "BHD" "BRL" "CAD" "CHF" "CNY" "EUR" "GBP" "HKD" "IDR" "INR" "JPY" "MXN" "KRW" "KWD" "MYR" "NZD" "PLN" "SEK" "SGD" "THB" "TWD" "USD" "XOF" "XPF" "ZAR" |
{- "amount": 150357.99,
- "currency": "USD"
}
po_number | string |
supplier_name | string Supplier name as per client convention |
Array of objects | |
desired_ex_factory_date | string (SimpleDate) |
desired_delivery_date | string (SimpleDate) |
Array of objects Array of up to 6 custom parameters |
{- "po_number": "PO5792303",
- "supplier_name": "Detroit Factory",
- "purchase_order_lines": [
- {
- "reference": "Delivery #1",
- "product": {
- "sku": "REF0123458",
- "name": "blue t-shirt",
- "hs_code": "96032930",
- "description": "blue shirt with a T shape",
- "is_hazardous": "false",
- "hazardous_description": "UN1993",
- "custom_parameters": [
- {
- "name": "parameter1",
- "value": "value1"
}
]
}, - "ordered_quantity": 500,
- "unit_price": {
- "amount": 150357.99,
- "currency": "USD"
}, - "assigned_order_lines": [
- {
- "ovrsea_shipment_id": "BATE",
- "shipment_status": "booking_request",
- "assigned_quantity": 200,
- "shipped_order_lines": [
- {
- "container_number": "HLCU1234567",
- "shipped_quantity": 150,
- "packaging_total_volume": 5,
- "number_of_packages": 10,
- "packaging_type": "box",
- "net_weight": 100,
- "gross_weight": 110,
- "volume_unit": "m3",
- "weight_unit": "kg"
}
]
}
]
}
], - "desired_ex_factory_date": "2021-10-11",
- "desired_delivery_date": "2021-10-11",
- "custom_parameters": [
- {
- "name": "parameter1",
- "value": "value1"
}
]
}
sku required | string |
hs_code | string |
description | string |
is_hazardous | boolean Default: "false" |
hazardous_description | string |
Array of objects Array of up to 3 custom parameters |
{- "sku": "REF0123458",
- "hs_code": "96032930",
- "description": "blue shirt with a T shape",
- "is_hazardous": "false",
- "hazardous_description": "UN1993",
- "custom_parameters": [
- {
- "name": "parameter1",
- "value": "value1"
}
]
}
value | number <float> |
unit | string Enum: "tc" "teu" "t" "pallet" "cbm" "kg" "cm" "chargeable_weight" "weight_measurement_lcl" "km" "null" |
{- "value": 350.25,
- "unit": "tc"
}
ovrsea_shipment_id | string |
status | string |
Array of objects (TrackingStep) | |
Array of objects (Coordinates) |
{- "ovrsea_shipment_id": "BATE",
- "status": "string",
- "tracking_steps": [
- {
- "type": "location",
- "location": {
- "id": 12345,
- "company_name": "Logistics WorldWide Co",
- "name": "Saint Quentin warehouse",
- "address": "357 allée des Tilleuls",
- "city": "Saint Quentin Fallavier",
- "zip_code": 69300,
- "country": "FR",
- "contacts": [
- {
- "name": "Thierry Henriet",
- "email": "log@patagonia.com",
- "phone": 33134567891
}
], - "opening_hours": "Monday to Friday 8am to 5pm",
- "requires_appointment": true,
- "requires_tailgate_truck": false,
- "additional_information": "Please avoid Friday after 4pm"
}, - "port": {
- "unlocode": "FR/LEH",
- "city": "Le Havre",
- "country": "FR"
}, - "events": [
- {
- "description": "Loaded on Vessel",
- "container_number": "MSDU8878398",
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}
]
}
], - "ocean_coordinates": [
- {
- "latitude": "48.858093",
- "longitude": "2.294694"
}
]
}
date | string (DateWithTime) |
status | string Enum: "estimated" "actual" "planned" "problem" |
{- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}
description | string |
container_number | string |
date | string (DateWithTime) |
status | string Enum: "estimated" "actual" "planned" "problem" |
{- "description": "Loaded on Vessel",
- "container_number": "MSDU8878398",
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}
type | string Enum: "location" "port" |
object (Location) | |
object (Port) | |
Array of objects (TrackingEvent) |
{- "type": "location",
- "location": {
- "id": 12345,
- "company_name": "Logistics WorldWide Co",
- "name": "Saint Quentin warehouse",
- "address": "357 allée des Tilleuls",
- "city": "Saint Quentin Fallavier",
- "zip_code": 69300,
- "country": "FR",
- "contacts": [
- {
- "name": "Thierry Henriet",
- "email": "log@patagonia.com",
- "phone": 33134567891
}
], - "opening_hours": "Monday to Friday 8am to 5pm",
- "requires_appointment": true,
- "requires_tailgate_truck": false,
- "additional_information": "Please avoid Friday after 4pm"
}, - "port": {
- "unlocode": "FR/LEH",
- "city": "Le Havre",
- "country": "FR"
}, - "events": [
- {
- "description": "Loaded on Vessel",
- "container_number": "MSDU8878398",
- "date": "2021-09-20T10:02:09+01:00",
- "status": "estimated"
}
]
}
id | string |
string | |
first_name | string |
last_name | string |
phone | string |
role | string |
{- "id": "12345",
- "email": "user@email.com",
- "first_name": "John",
- "last_name": "Doe",
- "phone": "0776655443",
- "role": "manager"
}