# Get Order Notifications

> Perform Get Order Notifications through Tomorrow Health.

Source: [https://genhealth.ai/docs/workflows/integrations/tomorrow-health/tomorrow_health_get_order_notifications](https://genhealth.ai/docs/workflows/integrations/tomorrow-health/tomorrow_health_get_order_notifications)

Integration: [Tomorrow Health](https://genhealth.ai/docs/workflows/integrations/tomorrow-health.md)

- Handler: `tomorrow_health_get_order_notifications`

- Connection type: `tomorrow_health`

## Inputs

- `first` — First (number)
  Optional numeric value.
  Default: `25`

## Outputs

- `success` — Success
- `notifications` — Notifications
- `count` — Count
- `has_unread_notifications` — Has Unread Notifications
- `new_notification_count` — New Notification Count
- `page_info` — Page Info
- `error` — Error

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

```json
{
  "type": "object",
  "properties": {
    "first": {
      "type": "number",
      "default": 25,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "success": {},
    "page_info": {},
    "notifications": {},
    "new_notification_count": {},
    "has_unread_notifications": {}
  },
  "additionalProperties": true
}
```
