Support Document Requests
GET endpoint for /clinician/prescription/support-document-requests in clinician category
Overview
- Method: GET
- Path:
/clinician/prescription/support-document-requests - Tags: clinician
Parameters
No parameters required.
Request Body
No request body required.
Responses
200
Successful response
Content Type: application/json
{
"type": "object",
"properties": {
"support_document_requests": {
"type": "string"
},
"order_id": {
"type": "string"
},
"document_type": {
"type": "string"
},
"status": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
}
},
"required": [
"support_document_requests",
"order_id",
"document_type",
"status",
"created_at",
"updated_at"
]
}400
Bad Request
Content Type: application/json
{
"type": "object",
"properties": {
"message": {
"type": "string"
},
"error": {
"type": "string"
}
},
"required": [
"message",
"error"
]
}401
Unauthorized
404
Not Found
500
Internal Server Error
Example Usage
curl -X GET \
http://localhost:9000/clinician/prescription/support-document-requests \
-H "Content-Type: application/json" \
Interactive Testing
You can test this endpoint interactively in the Swagger UI (opens in a new tab).