Request a Delivery
Request a new delivery of one package, we have 2 methods for delivery process, pickup: if you need from condor to pickup the package to one specific location and fulfillment when you deliver the package to condor location, and we handle the rest.
Example of the body:
{
"type": "fullfilment",
"reference_id": "internal-number", //optional
"notes": "general notes of the package", //optional
"product_details": [{
"reference_id" : "numeric", //use tracking from your side or product number
"description": "small description",
"quantity": 1,
"amount": 1000,
"charge": true, //if amount need to be charge by condor
"require_packaging": false //if packaging required, select true.
}],
"notifications_settings": {
"white_label" : false, //if you need hide condor logos and name from notifications, check with agent about extra costs.
"image": "", //optional
"tracking_image" : "" //optional
},
"destination" : {
"notifications": false, //if you want us to send notifications to client directly from condor
"name": "Person Name",
"phone": "+5069323032",
"email" : "", //optional
"location": {
"country_id":1,
"state_id": 1,
"canton_id": 1,
"district_id": 1,
"address": "", //optional
"lat": "", //optional
"lng": "" //optional
}
}, //next fields are working but are going to be discontinued in 3 months.
"charge" : false, //need to be charge by condor on destination
"charge_details" : {
"amount": 1213,
"currency" : "USD"
}
}Request one Delivery Fulfillment Method
POST https://api-sandbox.condorexpres.com/api/v1/public/delivery/request
Headers
Name
Type
Description
x-access-token*
String
Bearer token
Request Body
Name
Type
Description
type*
String
fulfillment
Last updated