> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fitsociety.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Checkups

> Reference for managing client check-up review sheets.

The `checkups` module provides tools to view client check-up histories and reviews (evaluation worksheets).

| Key                  | Value               |
| :------------------- | :------------------ |
| **Module Key**       | `checkups`          |
| **Sensitivity**      | `health`            |
| **Consent Required** | `healthDataConsent` |

***

## Available Tools

### `list_client_checkups`

List client weekly or monthly check-up evaluations.

* **Type:** Read-only
* **Important Input Fields:**
  * `clientId` (string, required): Unique client ID.
  * `page` (integer, optional): Page number.
  * `limit` (integer, optional): Items per page.

### `get_checkup_answers`

Retrieve the coach's and client's responses to check-up review sheets.

* **Type:** Read-only
* **Important Input Fields:**
  * `checkupId` (string, required): Unique check-up ID.

***

## Natural Language Examples

* *"Show me the check-ups submitted by Jane Doe."*
* *"Retrieve answers for check-up check\_abc123."*

***

## JSON-RPC Call Example (`list_client_checkups`)

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": "chk-1",
  "method": "tools/call",
  "params": {
    "name": "list_client_checkups",
    "arguments": {
      "clientId": "client_abc123"
    }
  }
}
```
