Skip to main content

Prescription Request

Prescription Request API

POST /patient/{id}/prescription_request

Creates a prescription request. Note that it should not create a prescription, just creates the request to processed appropriately. This endpoint is optional.

URI Parameters

  • id: Patient's ID
Body
Body:
"prescription_orders": [
{
"drug": "Paracetamol",
"dosage": "200 mg",
"presentation": "box of 20 pills",
"quantity": 2,
"observations": "text"
},
{
"drug": "Lisinopril",
"dosage": "10 mg",
"presentation": "bottle of 30 tablets",
"quantity": 1,
"observations": "Take after meals"
}
]