Skip to documentation
Parachute Health integration

Get Orders

Perform Get Orders through Parachute Health.

View as Markdown
parachute_get_orders
readparachute

Inputs

  • paginate_all
    boolean
    Paginate All

    Optional true-or-false value.

    Default: true

  • page
    number
    Page

    Optional numeric value.

    Default: 1

  • max_pages
    number
    Max Pages

    Optional numeric value.

    Default: 50

Outputs

  • ordersOrders
  • totalTotal
  • pages_fetchedPages Fetched
  • parachute_org_idParachute 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
{
  "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
{
  "type": "object",
  "properties": {
    "total": {},
    "orders": {},
    "pages_fetched": {},
    "parachute_org_id": {}
  },
  "additionalProperties": true
}
View all Parachute Health actions