# Get Prescription Details

> Perform Get Prescription Details through NikoHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_get_prescription_details](https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_get_prescription_details)

Integration: [NikoHealth](https://genhealth.ai/docs/workflows/integrations/nikohealth.md)

- Handler: `nikohealth_get_prescription_details`

- Connection type: `nikohealth`

## Inputs

- `prescription_id` — Prescription Id (text, required)
  Required text value.

## Outputs

- `success` — Success
- `prescription` — Prescription
- `error` — Error

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

```json
{
  "type": "object",
  "required": [
    "prescription_id"
  ],
  "properties": {
    "prescription_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "prescription": {}
  },
  "additionalProperties": true
}
```
