List Support Document Requests For An Order
Returns support document requests for a given order ID.
Overview
- Method: GET
- Path:
/clinician/prescription/get-support-document-requests/<id> - Tags: clinician
Parameters
id (path)
- Type:
string - Required: Yes
- Description: id parameter
Request Body
No request body required.
Responses
200
Successful response
Content Type: application/json
{
"support_document_requests": "string",
"order_id": "string",
"document_type": "string",
"status": "string",
"created_at": "2024-01-01T00:00:00.000Z",
"updated_at": "2024-01-01T00:00:00.000Z"
}400
Bad Request
Content Type: application/json
{
"message": "string",
"error": "string"
}401
Unauthorized
404
Not Found
500
Internal Server Error
Example Usage
curl -X GET \
https://api.pillexa.com/clinician/prescription/get-support-document-requests/<id> \
-H "Content-Type: application/json" \