Order List
To get the order details
POST
{{apiUrl}}doctor/orders/list
Request Body
Name
Type
Description
start_date*
String
Start date of orders.
apikey*
String
Authentication token
end_date*
String
End date of orders.
page
Number
For pagination purpose. default: 1
patient_id*
String
ID of the patient you want to see orders
remark
String
To search orders with notes
{
"status_code": "1",
"status_message": "Success",
"datetime": "2023-10-06 10:47:27",
"data": {
"results": [
{
"id": "X+j2u3xGNvyTzLrZCz+g+Q==", // Order ID
"bill_no": "",
"order_number": "OMLN8WCXGU",
"order_delivery_datetime": "2023-10-02 18:28:38",
"delivery_type": "delivery",
"order_status": "draft",
"created_date": "2023-10-02 18:28:38",
"amount": 4870,
"remark": "ICU Patient" // remarks from patient/other entity
}
],
"rpp": 20,
"current_page": 1
}
}
Last updated
Was this helpful?