Filter Order Notifications By Queue
Perform Filter Order Notifications By Queue through Tomorrow Health.
tomorrow_health_filter_order_notifications_by_queuewritetomorrow_health
Inputs
- Notifications
notificationsexpressionrequiredRequired literal value or workflow expression.
- Queue
queueselectrequiredRequired selected identifier or value.
Default:
"inbox"Options: Inbox ("inbox"), Accepted ("accepted"), Completed ("completed"), Cancelled ("cancelled")
Outputs
successSuccessnotificationsNotificationscountCountexcluded_countExcluded CountqueueQueuestatusesStatuseserrorError
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
}