Tracking
This service allows you to track a shipment.
Do not forget to authenticate your request,
Request
Request URL
https://srv.eliexpress.com.tr/api/v2/client-integration/track/:ID
Request URL Parameter
ID : Tracking number that you got from booking a shipment,
- Please not that you cannot chain IDs to the parameter. You can only track one shipment at a time. A new service for tracking bulk shipments will be available in the future.
Request Method
GET
Content-Type
application/json
Response
Response Status Codes
Response Body
✅
I your request to print was successful, the server will respond with a success true, the list of status updates for your shipment.
- Date is set to UTC timezone
{
"success": true,
"tracking": {
"status": [
{
"description": "Shipment Data Received",
"code": "DR",
"location": "Origin",
"date": "2022-06-11T09:21:11.207Z"
}
]
}
}
❌
If you failed to authenticate the server will respond with a request unauthorized message.
{
"success": false,
"message": "Request Unauthorized"
}
If you provided a wrong ID in the parameters, the server will respond with and error, and a Tracking Number not found message.
{
"success": false,
"message": "Tracking Number Not Found"
}