make_order
POST
/api/orders/makeorder/
Make Order
Request Body
orderdata
(object)order_name
(string): Name of the order.bizid
(string, required): Business ID.society_id
(string, required): Society ID.service_charge
(string, optional): Service charge for the order.delivery_charge
(string, optional): Delivery charge for the order.userid
(string, required): User ID.order_status
(string, optional): Status of the order.orderitems
(array)item_id
(string, required): ID of the item.item_price
(string, required): Price of the item.item_name
(string, required): Name of the item.item_qty
(string, required): Quantity of the item.Response (200 - OK)
{
"type": "object",
"properties": {
"status": {
"type": "boolean"
},
"message": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"orderid": {
"type": "string"
}
}
}
}
}
Request
Header Params
marchant-id
string
required
Example:
BIZ12354124
Body Params application/json
Request samples
Responses
Modified at 2024-10-17 16:02:45