Get Orders
Request Parameters:
Retrieve the information of customer orders.
URL: ../Api/Client/GetOrder
Header:
Content-Type:application/json
Required Parameters :
Case-1. Exception Response :
Parameter:
{
"ApiSecretKey":"i99b98d117m116a112o98k115c111",
"CustomerGUID":"D3AA1712-4528-42C1-9DEC-201DBF99986F",
"StoreId":"1",
"LanguageId":"1"
}
Response :
{
"Status": 0,
"Message": "No order found with id {0}",
"Data": null,
"ValidationMessage": [],
"ErrorMessage": null
}
Case-2. Success Response :
Parameter:
{
"ApiSecretKey":"i99b98d117m116a112o98k115c111",
"CustomerGUID":"496DBB2A-F9EB-4522-A804-B108693B69CE",
"StoreId":"1",
"LanguageId":"1"
}
Response :
{
"Status": 1,
"Message": "Success",
"Data": [
{
"OrderId": 8,
"OrderDate": "8/11/2018",
"OrderStatus": "Processing",
"OrderTotal": "$245.00"
},
{
"OrderId": 7,
"OrderDate": "8/11/2018",
"OrderStatus": "Cancelled",
"OrderTotal": "$245.00"
}
],
"ValidationMessage": [],
"ErrorMessage": null
}