Clinician
Macros
Assign To Clinician

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

FieldTypeRequiredDetails
prescriptionIdstringYes
clinicianIdstringYes
notesstringNo

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"}'