Skip to documentation
Tomorrow Health integration

List Supplier Orders

Perform List Supplier Orders through Tomorrow Health.

View as Markdown
tomorrow_health_list_supplier_orders
writetomorrow_health

Inputs

  • queue
    selectrequired
    Queue

    Required selected identifier or value.

    Default: "inbox"

    Options: Inbox ("inbox"), Accepted ("accepted"), Completed ("completed"), Cancelled ("cancelled")

  • friendly_id
    text
    Friendly Id

    Optional text value.

  • patient_name
    text
    Patient Name

    Optional text value.

  • category_name
    text
    Category Name

    Optional text value.

  • paginate_all
    boolean
    Paginate All

    Optional true-or-false value.

    Default: false

  • first
    number
    First

    Optional numeric value.

    Default: 25

  • offset
    number
    Offset

    Optional numeric value.

    Default: 0

Outputs

  • ordersOrders
  • countCount
  • total_countTotal Count
  • queueQueue
  • statusesStatuses
  • applied_filtersApplied Filters
  • tomorrow_health_org_idTomorrow Health Org Id
  • tomorrow_health_org_nameTomorrow Health Org Name
  • tomorrow_health_supplier_idTomorrow Health Supplier Id
  • tomorrow_health_user_idTomorrow Health User Id
  • tomorrow_health_user_emailTomorrow Health User Email
  • tomorrow_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
}
View all Tomorrow Health actions