Approve Prescription
This endpoint allows clinicians to approve prescriptions that have been reviewed and are ready for pharmacy fulfillment. The prescription will be marked as approved and sent to the pharmacy for processing.
Overview
- Method: POST
- Path:
/clinician/macros/approve-prescription - Tags: clinician
Parameters
No parameters required.
Request Body
- Content Type:
application/json - Required: Yes
Fields
| Field | Type | Required | Details |
|---|---|---|---|
| prescriptionId | string | Yes | |
| notes | string | No |
Responses
200
Successful response
Content Type: application/json
{
"prescriptionId": "string",
"status": "string",
"message": "string"
}400
Bad Request
Content Type: application/json
{}401
Unauthorized
404
Not Found
500
Internal Server Error
Example Usage
curl -X POST \
https://api.pillexa.com/clinician/macros/approve-prescription \
-H "Content-Type: application/json" \
-d '{"example": "data"}'