Create a simple transport as a carrier
Step 1: Get your API Token
Get the API tokenStep 2: Get your company's primary key (pk)
Step 3: Create your first transport!
Make an authenticated request{
"carrier_address": {
"company": {
"pk": "YOUR_COMPANY_PK"
},
"address": "Carrier address",
"postcode": "12345",
"city": "Carrier city",
"country": "FR"
},
"deliveries": [
{
"shipper_address": {
"address": "Shipper address",
"postcode": "12345",
"city": "Shipper city",
"country": "FR",
"company": {
"name": "Shipper company",
"country": "FR"
}
},
"shipper_reference": "Shipper reference",
"origin": {
"address": {
"address": "Loading address",
"postcode": "12345",
"city": "Loading city",
"country": "FR",
"company": {
"name": "Loading company",
"country": "FR"
}
},
"reference": "Loading reference",
"loading_instructions": "Loading instructions"
},
"destination": {
"address": {
"address" : "Unloading address",
"postcode": "12345",
"city": "Unloading city",
"country": "FR",
"company": {
"name": "Unloading company",
"country": "FR"
}
},
"reference": "Unloading reference",
"unloading_instructions": "Unloading instructions"
},
"planned_loads": [
{
"weight": "12345",
"category": "pallets",
"quantity": "24",
"description": "Load description",
"refrigerated": false,
"dangerous_goods_category": null
}
]
}
],
"segments": [
{
"origin": {
"address": {
"address": "Loading address",
"postcode": "12345",
"city": "Loading city",
"country": "FR",
"company": {
"name": "Loading company",
"country": "FR"
}
},
"reference": "Loading reference",
"loading_instructions": "Loading instructions"
},
"destination": {
"address": {
"address" : "Unloading address",
"postcode": "12345",
"city": "Unloading city",
"country": "FR",
"company": {
"name": "Unloading company",
"country": "FR"
}
},
"reference": "Unloading reference",
"unloading_instructions": "Unloading instructions"
},
"trailers": [
{
"license_plate": "AB123CD"
}
],
"vehicle": {
"license_plate": "EF456GH"
}
}
]
}
Step 4: Customize your data
Last updated
Was this helpful?