Skip to main content
Version: 3.0.0

Get Order List By Tracking Number

Get a list of all Ahamove order ID of an tracking_number

curl --location 'https://partner-apistg.ahamove.com/v3/orders/tracks/<tracking_number>' \
--header 'Authorization: Bearer <token>'

HTTP Request

GET https://partner-apistg.ahamove.com/v3/orders/tracks

Headers

ParameterValueRequiredDescription
AuthorizationBearer <token>YesToken of partner

Query Parameters

ParameterTypeRequiredDescription
tracking_numberStringYesInternal tracking number
from_timeIntNoStart time to search the order list. Defaults to 7 days prior to the current time if not specified
to_timeIntNoEnd time to search the order list. Defaults to the current time if not specified

Response

JSON response example:

[
{
"_id": "24AV9K67",
"path": [
{
"address": "7/28 Thành Thái, Phường 14, Quận 10"
},
{
"address": "475A Điện Biên Phủ, Phường 25, Bình Thạnh, Thành phố Hồ Chí Minh",
"status": "FAILED",
"tracking_number": "200207"
}
],
"status": "COMPLETED",
"service_id": "SGN-BIKE",
"create_time": 1729502059
},
{
"_id": "247D21C5",
"path": [
{
"address": "7/28 Thành Thái, Phường 14, Quận 10"
},
{
"address": "475A Điện Biên Phủ, Phường 25, Bình Thạnh, Thành phố Hồ Chí Minh",
"tracking_number": "200207"
}
],
"status": "CANCELLED",
"service_id": "SGN-BIKE",
"create_time": 1729497661
}
]

Status-Code: 200 OK

Errors

CodeTextDescription
401NOT_AUTHORIZEDInvalid token
404ORDER_NOT_FOUNDOrder ID not found
500INTERNAL_SERVER_ERRORWe had a problem with our server. Try again later
503SERVICE_UNAVAILABLEWe're temporarily offline for maintenance. Please try again later