# Select Order Candidates

> Perform Select Order Candidates through Parachute Health.

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

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

- Handler: `parachute_select_order_candidates`

- Connection type: `parachute`

## Inputs

- `orders` — Orders (expression, required)
  Required literal value or workflow expression.
- `max_orders` — Max Orders (number)
  Optional numeric value.
  Default: `1`
- `max_scan` — Max Scan (number)
  Optional numeric value.
  Default: `50`
- `order_created_marker_template` — Order Created Marker Template (text, required)
  Required text value.
- `action_required_marker_template` — Action Required Marker Template (text, required)
  Required text value.
- `retry_marker_template` — Retry Marker Template (text, required)
  Required text value.
- `legacy_processed_marker_template` — Legacy Processed Marker Template (text, required)
  Required text value.

## Outputs

- `orders` — Orders
- `selected_count` — Selected Count
- `scanned_count` — Scanned Count
- `skipped_state_counts` — Skipped State Counts

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `write`
- Confirmation recommended: no
- Retry safe: no
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "orders",
    "order_created_marker_template",
    "action_required_marker_template",
    "retry_marker_template",
    "legacy_processed_marker_template"
  ],
  "properties": {
    "orders": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "max_scan": {
      "type": "number",
      "default": 50,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "max_orders": {
      "type": "number",
      "default": 1,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "retry_marker_template": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "order_created_marker_template": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "action_required_marker_template": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "legacy_processed_marker_template": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "orders": {},
    "scanned_count": {},
    "selected_count": {},
    "skipped_state_counts": {}
  },
  "additionalProperties": true
}
```
