List Supplier Orders
Perform List Supplier Orders through Tomorrow Health.
tomorrow_health_list_supplier_orderswritetomorrow_health
Inputs
- Queue
queueselectrequiredRequired selected identifier or value.
Default:
"inbox"Options: Inbox ("inbox"), Accepted ("accepted"), Completed ("completed"), Cancelled ("cancelled")
- Friendly Id
friendly_idtextOptional text value.
- Patient Name
patient_nametextOptional text value.
- Category Name
category_nametextOptional text value.
- Paginate All
paginate_allbooleanOptional true-or-false value.
Default:
false - First
firstnumberOptional numeric value.
Default:
25 - Offset
offsetnumberOptional numeric value.
Default:
0
Outputs
ordersOrderscountCounttotal_countTotal CountqueueQueuestatusesStatusesapplied_filtersApplied Filterstomorrow_health_org_idTomorrow Health Org Idtomorrow_health_org_nameTomorrow Health Org Nametomorrow_health_supplier_idTomorrow Health Supplier Idtomorrow_health_user_idTomorrow Health User Idtomorrow_health_user_emailTomorrow Health User Emailtomorrow_health_user_nameTomorrow Health User Name
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": [
"queue"
],
"properties": {
"first": {
"type": "number",
"default": 25,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"queue": {
"enum": [
"inbox",
"accepted",
"completed",
"cancelled"
],
"type": "string",
"default": "inbox",
"description": "Required selected identifier or value.",
"x-workflow-field-type": "select"
},
"offset": {
"type": "number",
"default": 0,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"friendly_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"paginate_all": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"patient_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"category_name": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"queue": {},
"orders": {},
"statuses": {},
"total_count": {},
"applied_filters": {},
"tomorrow_health_org_id": {},
"tomorrow_health_user_id": {},
"tomorrow_health_org_name": {},
"tomorrow_health_user_name": {},
"tomorrow_health_user_email": {},
"tomorrow_health_supplier_id": {}
},
"additionalProperties": true
}