# Sympla

Sympla is a platform for managing both in-person and online events, offering tools for ticket sales, registrations, and digital content broadcasting.

- **Category:** event management
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 1
- **Triggers:** 0
- **Slug:** `SYMPLA`
- **Version:** 20260223_00

## Tools

### List Events

**Slug:** `SYMPLA_LIST_EVENTS`

Tool to list all events created by the authenticated organizer. Use this when you need to fetch events from a Sympla account. Supports pagination, filtering by published status, date range, and sorting.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number of the results (must be ≥1). |
| `sort` | string | No | Sort direction. Options: 'ASC' or 'DESC'. Default is 'ASC'. |
| `fields` | string | No | Comma-separated list of field names to customize response. If specified, only these fields will be returned. |
| `from_date` | string | No | Filter events starting from specified date. Format: 'YYYY-MM-DD HH:mm:ss'. |
| `page_size` | integer | No | Number of results per page (1–200). Default is 100. |
| `published` | boolean | No | Filter events by published status. Default is true (only published events). |
| `field_sort` | string | No | Field to sort by. Options: 'id', 'start_date', 'end_date', 'name'. Default is 'start_date'. |

#### Output

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `data` | string | Yes | Data from the action execution |
| `error` | string | No | Error if any occurred during the execution of the action |
| `successful` | boolean | Yes | Whether or not the action execution was successful or not |
