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

# Event Templates

> Reference for viewing calendar event templates.

The `event_templates` module provides tools to inspect reusable calendar configurations.

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

***

## Available Tools

### `list_event_templates`

List the reusable event templates defined by the company.

* **Type:** Read-only
* **Important Input Fields:**
  * `page` (integer, optional): Page number.
  * `limit` (integer, optional): Items per page.

### `get_event_template`

Retrieve details of a specific event template.

* **Type:** Read-only
* **Important Input Fields:**
  * `eventTemplateId` (string, required): Unique identifier for the template.

***

## Natural Language Examples

* *"List all workout event templates configured in the system."*
* *"Retrieve details for the event template templ\_8821."*

***

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

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": "tpl-1",
  "method": "tools/call",
  "params": {
    "name": "get_event_template",
    "arguments": {
      "eventTemplateId": "template_abc123"
    }
  }
}
```
