Validate Patient For An Order
This API validates the patient information associated with a customer and a specific order. It confirms that the patient’s details are accurate and records a validation event for audit or tracking purposes.
Overview
- Method: POST
- Path:
/clinician/patient/validate-patient - Tags: clinician
Use Cases
- Ensure patient information is verified before proceeding with treatments, prescriptions, or orders.
- Track validation events to maintain a history of confirmed patient data.
Parameters
No parameters required.
Request Body
No request body required.
Responses
200
Successful response
Content Type: application/json
{
"message": "string"
}400
Bad Request
Content Type: application/json
{
"error": "string",
"details": [
{}
]
}401
Unauthorized
404
Not Found
500
Internal Server Error
Example Usage
curl -X POST \
https://api.pillexa.com/clinician/patient/validate-patient \
-H "Content-Type: application/json" \