# Get Order Documents

> Perform Get Order Documents through ClearPathMD.

Source: [https://genhealth.ai/docs/workflows/integrations/clear-path-md/clearpath_get_order_documents](https://genhealth.ai/docs/workflows/integrations/clear-path-md/clearpath_get_order_documents)

Integration: [ClearPathMD](https://genhealth.ai/docs/workflows/integrations/clear-path-md.md)

- Handler: `clearpath_get_order_documents`

- Connection type: `clearpathmd`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `page_size` — Page Size (number)
  Optional numeric value.
  Default: `50`

## Outputs

- `success` — Success
- `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": [
    "order_id"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "page_size": {
      "type": "number",
      "default": 50,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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