# Get Orders

> Perform Get Orders through Parachute Health.

Source: [https://genhealth.ai/docs/workflows/integrations/parachute-health/parachute_get_orders](https://genhealth.ai/docs/workflows/integrations/parachute-health/parachute_get_orders)

Integration: [Parachute Health](https://genhealth.ai/docs/workflows/integrations/parachute-health.md)

- Handler: `parachute_get_orders`

- Connection type: `parachute`

## Inputs

- `paginate_all` — Paginate All (boolean)
  Optional true-or-false value.
  Default: `true`
- `page` — Page (number)
  Optional numeric value.
  Default: `1`
- `max_pages` — Max Pages (number)
  Optional numeric value.
  Default: `50`

## Outputs

- `orders` — Orders
- `total` — Total
- `pages_fetched` — Pages Fetched
- `parachute_org_id` — Parachute Org Id

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",
  "properties": {
    "page": {
      "type": "number",
      "default": 1,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "max_pages": {
      "type": "number",
      "default": 50,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "paginate_all": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "total": {},
    "orders": {},
    "pages_fetched": {},
    "parachute_org_id": {}
  },
  "additionalProperties": true
}
```
