Get Order Status Details Pending
Run in Apidog
Method Summary: Get Order Status Details# The Get Order Status Details method (GET /physical-products/sale/orders/details/{authorizationCode}) is used to retrieve the detailed information of a single physical product order , including the specific delivery location and beneficiary data. Unlike the Get Orders method, which provides a list of headers (summaries), this method focuses on fetching the complete order body or detail based on its unique authorization code. Key Usage Details# This method requires a single mandatory parameter in the path for identification and the standard security headers: Parameter Type Location Purpose authorizationCodestringPath The unique code that identifies a specific order (equivalent to the localReference in the order header). U, SH, STstringHeader Security or authentication tokens required to authorize the request.
Expected Response (200 OK)# If the request is successful, the API returns an array containing a single object with the detailed status information, including: Detail Field Description Sub-Fields statusDescriptionA textual description of the order's current status. N/A beneficiaryDetailed information about the person receiving the order. document, email, name, surname, phone, addresslocationDetailed delivery location information. municipality, state, deliverLocation
Request Code Samples
curl --location --request GET 'https://evsb.csqworld.com/physical-products/sale/orders/details/' \
--header 'U: {{U}}' \
--header 'SH: {{SH}}' \
--header 'ST: {{ST}}' Responses application/json Generate Code
[
{
"statusDescription" : "string" ,
"beneficiary" : {
"document" : "string" ,
"email" : "string" ,
"name" : "string" ,
"surname" : "string" ,
"phone" : "string" ,
"address" : "string"
} ,
"location" : {
"municipality" : "string" ,
"state" : "string" ,
"deliverLocation" : "stringstri"
}
}
] Modified atĀ 2025-10-14 13:17:38