> ## 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.

# Recurring Bookings

> Reference for managing repeating client booking schedules.

The `recurring_bookings` module provides tools to view client repeating reservation schedules.

| Key                  | Value                |
| :------------------- | :------------------- |
| **Module Key**       | `recurring_bookings` |
| **Sensitivity**      | `operational`        |
| **Consent Required** | None                 |

***

## Available Tools

### `list_recurring_bookings`

List active recurring bookings for clients.

* **Type:** Read-only
* **Important Input Fields:**
  * `clientId` (string, optional): Filter recurring bookings for a specific client.
  * `page` (integer, optional): Page number.
  * `limit` (integer, optional): Items per page.

***

## Natural Language Examples

* *"Check if client client\_8821 has any repeating session bookings."*
* *"Retrieve all recurring bookings in the system."*

***

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

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