# Get Additional Document Notifications

> Perform Get Additional Document Notifications through Tomorrow Health.

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

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

- Handler: `tomorrow_health_get_additional_document_notifications`

- Connection type: `tomorrow_health`

## Inputs

- `first` — First (number)
  Optional numeric value.
  Default: `25`
- `notification_created_at_or_after` — Notification Created At Or After (text)
  Optional text value.
- `max_pages` — Max Pages (number)
  Optional numeric value.
  Default: `5`
- `max_notifications` — Max Notifications (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
- `pages_scanned` — Pages Scanned
- `ignored_before_cutoff_count` — Ignored Before Cutoff Count
- `invalid_created_at_count` — Invalid Created At Count
- `handled_count` — Handled Count
- `acknowledged_receipt_count` — Acknowledged Receipt Count
- `unresolved_count` — Unresolved Count
- `candidate_limit_reached` — Candidate Limit Reached
- `scan_continuation_saved` — Scan Continuation Saved
- `scan_cycle_completed` — Scan Cycle Completed
- `head_scan_performed` — Head Scan Performed
- `notification_created_at_or_after` — Notification Created At Or After
- `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"
    },
    "max_pages": {
      "type": "number",
      "default": 5,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "max_notifications": {
      "type": "number",
      "default": 25,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "notification_created_at_or_after": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "success": {},
    "page_info": {},
    "handled_count": {},
    "notifications": {},
    "pages_scanned": {},
    "unresolved_count": {},
    "head_scan_performed": {},
    "scan_cycle_completed": {},
    "new_notification_count": {},
    "candidate_limit_reached": {},
    "scan_continuation_saved": {},
    "has_unread_notifications": {},
    "invalid_created_at_count": {},
    "acknowledged_receipt_count": {},
    "ignored_before_cutoff_count": {},
    "notification_created_at_or_after": {}
  },
  "additionalProperties": true
}
```
