Get Prescription
GET endpoint for /pharmacy/order/get-prescription in pharmacy category
Overview
- Method: GET
- Path:
/pharmacy/order/get-prescription - Tags: pharmacy
Parameters
No parameters required.
Request Body
No request body required.
Responses
200
Successful response
Content Type: application/json
{
"type": "object",
"properties": {
"form": {
"type": "string"
},
"content": {
"type": "string"
},
"signatures": {
"type": "string"
},
"type": {
"type": "string"
},
"data": {
"type": "string"
}
},
"required": [
"form",
"content",
"signatures",
"type",
"data"
]
}400
Bad Request
Content Type: application/json
{
"$ref": "#/components/schemas/Error"
}401
Unauthorized
404
Not Found
500
Internal Server Error
Example Usage
curl -X GET \
http://localhost:9000/pharmacy/order/get-prescription \
-H "Content-Type: application/json" \
Interactive Testing
You can test this endpoint interactively in the Swagger UI (opens in a new tab).