Get Prescription Details
Perform Get Prescription Details through NikoHealth.
nikohealth_get_prescription_detailsreadnikohealth
Inputs
- Prescription Id
prescription_idtextrequiredRequired text value.
Outputs
successSuccessprescriptionPrescriptionerrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- read
- Confirmation recommended
- No
- Retry safe
- Yes
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"prescription_id"
],
"properties": {
"prescription_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"prescription": {}
},
"additionalProperties": true
}