Skip to documentation
Tomorrow Health integration

Filter Order Notifications By Queue

Perform Filter Order Notifications By Queue through Tomorrow Health.

View as Markdown
tomorrow_health_filter_order_notifications_by_queue
writetomorrow_health

Inputs

  • notifications
    expressionrequired
    Notifications

    Required literal value or workflow expression.

  • queue
    selectrequired
    Queue

    Required selected identifier or value.

    Default: "inbox"

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

Outputs

  • successSuccess
  • notificationsNotifications
  • countCount
  • excluded_countExcluded Count
  • queueQueue
  • statusesStatuses
  • errorError

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": [
    "notifications",
    "queue"
  ],
  "properties": {
    "queue": {
      "enum": [
        "inbox",
        "accepted",
        "completed",
        "cancelled"
      ],
      "type": "string",
      "default": "inbox",
      "description": "Required selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "notifications": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "queue": {},
    "success": {},
    "statuses": {},
    "notifications": {},
    "excluded_count": {}
  },
  "additionalProperties": true
}
View all Tomorrow Health actions