Skip to main content
Version: 3.0.0

Get Multiple Order Detail

Get detail information of multiple order at once

curl --location 'https://partner-apistg.ahamove.com/v3/orders?ids=<order_id>,<order_id>,<order_id>' \
--header 'Authorization: Bearer <token>'

HTTP Request

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

Headers

ParameterValueRequiredDescription
AuthorizationBearer <token>YesToken of the order creator or the parent account

Query Parameters

ParameterTypeRequiredDescription
idsStringYesList of order IDs, separated by commas

Response

JSON response example:

{
{
"_id": "24ABCD",
...# order detail
},
{
"_id": "24EFGH",
...# order detail
},
{
"_id": "24IJKL",
...# order detail
}
}

Status-Code: 200 OK

Errors

CodeTextDescription
401NOT_AUTHORIZEDInvalid token
403DENY_ACCESS_ORDER_DETAILNo permission to get order detail
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