Assign To Clinician
Assign a prescription to a clinician, optionally including notes for context.
Overview
- Method: POST
- Path:
/clinician/macros/assign-to-clinician - Tags: clinician
Parameters
No parameters required.
Request Body
- Content Type:
application/json - Required: Yes
Fields
| Field | Type | Required | Details |
|---|---|---|---|
| prescriptionId | string | Yes | |
| clinicianId | 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/assign-to-clinician \
-H "Content-Type: application/json" \
-d '{"example": "data"}'