Get Orders
Perform Get Orders through Parachute Health.
parachute_get_ordersreadparachute
Inputs
- Paginate All
paginate_allbooleanOptional true-or-false value.
Default:
true - Page
pagenumberOptional numeric value.
Default:
1 - Max Pages
max_pagesnumberOptional numeric value.
Default:
50
Outputs
ordersOrderstotalTotalpages_fetchedPages Fetchedparachute_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
}