get_order_cart
GET
/api/orders/orderbycart/
Get Orders by Cart
Request
Endpoint
GET
api/orders/orderbycart/
Query Parameters
societyid
(integer) - The ID of the society.bizid
(integer) - The ID of the business.limit
(integer) - The maximum number of orders to retrieve.offset
(integer) - The number of orders to skip before starting to return results.order
(string) - The order in which the results should be returned (e.g., "asc" or "desc").Response
Status
200
- OKHeaders
Content-Type: application/json
Body
{
"status": true,
"message": "",
"total": 0,
"data": {
"order": [
{
"id": "",
"orderid": "",
"item_name": "",
"item_id": "",
"societyid": "",
"cityname": "",
"statename": "",
"useraddress": null,
"userphone": null,
"username": null,
"useremail": null,
"societyaddress": "",
"ordertime": "",
"status": ""
}
]
}
}
status
, an optional message
, the total
number of orders, and an array of order
objects with their respective details.Request
Query Params
societyid
string
required
Example:
6
bizid
string
required
Example:
1
limit
string
required
offset
string
required
order
string
required
Example:
desc
Header Params
marchant-id
string
required
Example:
BIZ12354124
Body Params application/json
Request samples
Responses
Modified at 2024-10-17 16:02:45