GET Api/ORDERS/SUMMARY?pSize={pSize}&pNo={pNo}
Get order summary
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pSize |
Optional. Default value is 1. Maximum records count (page size) that may return as a result of GET request. If not passed, a max of 50 records will be returned as a result for the request |
integer |
Default value is 50 |
| pNo |
Optional. Default value is 1. Page index (a number starting from 1) needed from server. If not passed page 1 will be returned |
integer |
Default value is 1 |
Body Parameters
None.
Response Information
Resource Description
ORDERS_SUMMARY_GET_RESPONSE| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | Status |
None. |
|
| Page | Page |
None. |
|
| DATA | Collection of ORDER |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": {
"Success": true,
"MessageEn": "sample string 2",
"MessageAr": "sample string 3",
"DetailedMessage": "sample string 4",
"Code": 0,
"CartErrors": [
{
"ResultStatusCode": 0,
"CartId": 1,
"CorrectValue": {},
"MessageEn": "sample string 2",
"MessageAr": "sample string 3",
"CartCorrectAction": 0
},
{
"ResultStatusCode": 0,
"CartId": 1,
"CorrectValue": {},
"MessageEn": "sample string 2",
"MessageAr": "sample string 3",
"CartCorrectAction": 0
}
]
},
"Page": {
"TotalRecords": 1,
"PagesCount": 2,
"PageNo": 3,
"PageSize": 4
},
"DATA": [
{
"ORDER_ID": 1,
"ORDER_DATE": "2025-12-08T00:34:41.223Z",
"STATUS_NAME_AR": "sample string 3",
"STATUS_NAME_EN": "sample string 4",
"STATUS_COLOR": "sample string 5",
"GRAND_TOTAL_CHARGE": 6.0,
"PRODUCT_IMAGES": [
"sample string 1",
"sample string 2"
]
},
{
"ORDER_ID": 1,
"ORDER_DATE": "2025-12-08T00:34:41.223Z",
"STATUS_NAME_AR": "sample string 3",
"STATUS_NAME_EN": "sample string 4",
"STATUS_COLOR": "sample string 5",
"GRAND_TOTAL_CHARGE": 6.0,
"PRODUCT_IMAGES": [
"sample string 1",
"sample string 2"
]
}
]
}
