# List Patient Follow-Ups

> Perform List Patient Follow-Ups through React Health.

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

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

- Handler: `reacthealth_list_follow_ups`

- Connection type: `reacthealth`

## Inputs

- `follow_up_date` — Follow Up Date (expression, required)
  Required literal value or workflow expression.
- `location` — Location (expression)
  Optional literal value or workflow expression.
- `my_follow_ups_only` — My Follow Ups Only (boolean)
  Optional true-or-false value.
  Default: `false`
- `pending_follow_ups_only` — Pending Follow Ups Only (boolean)
  Optional true-or-false value.
  Default: `false`
- `order_direction` — Order Direction (select)
  Optional selected identifier or value.
  Default: `"asc"`
  Options: Ascending ("asc"), Descending ("desc")
- `max_pages` — Max Pages (number)
  Optional numeric value.
  Default: `0`

## Outputs

- `success` — Success
- `records` — Records
- `count` — Count
- `current_page` — Current Page
- `last_page` — Last Page
- `per_page` — Per Page
- `total` — Total
- `first_result_index` — First Result Index
- `last_result_index` — Last Result Index
- `next_page_url` — Next Page Url
- `prev_page_url` — Prev Page Url
- `truncated` — Truncated
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `read`
- Confirmation recommended: no
- Retry safe: yes
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "follow_up_date"
  ],
  "properties": {
    "location": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "max_pages": {
      "type": "number",
      "default": 0,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "follow_up_date": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "order_direction": {
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string",
      "default": "asc",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "my_follow_ups_only": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "pending_follow_ups_only": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "total": {},
    "records": {},
    "success": {},
    "per_page": {},
    "last_page": {},
    "truncated": {},
    "current_page": {},
    "next_page_url": {},
    "prev_page_url": {},
    "last_result_index": {},
    "first_result_index": {}
  },
  "additionalProperties": true
}
```
