Skip to documentation
Parachute Health integration

Select Order Candidates

Perform Select Order Candidates through Parachute Health.

View as Markdown
parachute_select_order_candidates
writeparachute

Inputs

  • orders
    expressionrequired
    Orders

    Required literal value or workflow expression.

  • max_orders
    number
    Max Orders

    Optional numeric value.

    Default: 1

  • max_scan
    number
    Max Scan

    Optional numeric value.

    Default: 50

  • order_created_marker_template
    textrequired
    Order Created Marker Template

    Required text value.

  • action_required_marker_template
    textrequired
    Action Required Marker Template

    Required text value.

  • retry_marker_template
    textrequired
    Retry Marker Template

    Required text value.

  • legacy_processed_marker_template
    textrequired
    Legacy Processed Marker Template

    Required text value.

Outputs

  • ordersOrders
  • selected_countSelected Count
  • scanned_countScanned Count
  • skipped_state_countsSkipped 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
{
  "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
{
  "type": "object",
  "properties": {
    "orders": {},
    "scanned_count": {},
    "selected_count": {},
    "skipped_state_counts": {}
  },
  "additionalProperties": true
}
View all Parachute Health actions