# Get Patient Details

> Perform Get Patient Details through ModMed.

Source: [https://genhealth.ai/docs/workflows/integrations/mod-med/modmed_get_patient_details](https://genhealth.ai/docs/workflows/integrations/mod-med/modmed_get_patient_details)

Integration: [ModMed](https://genhealth.ai/docs/workflows/integrations/mod-med.md)

- Handler: `modmed_get_patient_details`

- Connection type: `modmed`

## Inputs

- `patient_id` — Patient Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `patient` — Patient
- `patient_id` — Patient Id
- `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": [
    "patient_id"
  ],
  "properties": {
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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