# Eventee

Eventee is an intuitive mobile and web app that enhances attendee experience and engagement at in-person, virtual, or hybrid events.

- **Category:** event management
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 22
- **Triggers:** 0
- **Slug:** `EVENTEE`
- **Version:** 20260217_00

## Tools

### Add speaker

**Slug:** `EVENTEE_ADD_SPEAKER`

Tool to add a new speaker to a specific Eventee event. Use after creating an event and obtaining its ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `bio` | string | No | Biography of the speaker (plain text) |
| `name` | string | Yes | Full name of the speaker |
| `email` | string | No | Email address of the speaker |
| `photo` | string | No | URL to the speaker's photo image |
| `company` | string | No | Company the speaker represents |
| `event_id` | string | Yes | Unique identifier of the Eventee event (can be string or integer) |
| `position` | string | No | Job title or position of the speaker |
| `instagram` | string | No | Instagram username or handle |

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

### Create Hall

**Slug:** `EVENTEE_CREATE_HALL`

Tool to create a new hall/stage for an event where sessions can be scheduled. Use when setting up venues or stages for your event to organize presentations and activities.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | The name of the hall/stage to create where sessions can be scheduled |

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

### Create Label

**Slug:** `EVENTEE_CREATE_LABEL`

Tool to create a new label/track for categorizing event sessions by topic or theme. Use this when organizing sessions into different tracks like technology, design, or marketing themes.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | Yes | The name of the label/track for categorizing sessions (e.g., 'Technology Track', 'Design Track') |
| `color` | string | No | Hex color code for the label (e.g., '#FF5733', '#3498DB'). Must start with # followed by 6 hexadecimal characters. |

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

### Create Partner

**Slug:** `EVENTEE_CREATE_PARTNER`

Tool to add a new partner/sponsor to the event. Use when you need to register sponsors or exhibitors for your event.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `web` | string | No | Partner website URL |
| `email` | string | No | Partner contact email address |
| `phone` | string | No | Partner contact phone number |
| `address` | string | No | Partner physical address |
| `company` | string | Yes | The name of the partner/sponsor company |
| `description` | string | No | Description of the partner/sponsor |

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

### Create Pause

**Slug:** `EVENTEE_CREATE_PAUSE`

Tool to create a new break/pause in the event schedule (e.g., coffee break, lunch). Use when scheduling breaks between sessions. Start and end times must be within the event date range.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `end` | string | Yes | End time in format YYYY-MM-DD HH:MM:SS (must be within event date range and after start time) |
| `name` | string | Yes | Name of the pause/break (e.g., Coffee Break, Lunch Break) |
| `start` | string | Yes | Start time in format YYYY-MM-DD HH:MM:SS (must be within event date range) |
| `event_id` | string | Yes | Unique identifier of the Eventee event (can be string or integer) |
| `description` | string | No | Optional description of the pause/break |

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

### Delete Attendee

**Slug:** `EVENTEE_DELETE_ATTENDEE`

Tool to remove an attendee from the event by their email address. Use when you need to delete an attendee registration.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email` | string | Yes | Email address of the attendee to remove from the event |

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

### Delete Hall

**Slug:** `EVENTEE_DELETE_HALL`

Tool to delete a hall/stage from an event by its ID. Use when you need to remove a hall/stage after confirming its ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `hall_id` | string | Yes | Unique identifier of the hall/stage to delete |

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

### Delete Partner

**Slug:** `EVENTEE_DELETE_PARTNER`

Tool to delete a partner/sponsor by their ID. Use when you need to remove a partner after confirming their ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `partner_id` | string | Yes | Unique identifier of the partner/sponsor to delete |

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

### Delete Registration

**Slug:** `EVENTEE_DELETE_REGISTRATION`

Tool to remove a registration from the event by email address. Use when you need to delete or cancel a specific registration.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email` | string | Yes | Email address of the registration to delete |

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

### Delete Speaker

**Slug:** `EVENTEE_DELETE_SPEAKER`

Tool to delete a speaker by their ID. Use when you need to remove a speaker after confirming their ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `speaker_id` | string | Yes | Unique identifier of the speaker to delete |

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

### Delete Test Content

**Slug:** `EVENTEE_DELETE_TEST_CONTENT`

Tool to clear all test content from the event. Use this during development or testing to remove test data. This operation is destructive and cannot be undone.

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

### Get Groups

**Slug:** `EVENTEE_GET_GROUPS`

Tool to retrieve all event groups from Eventee (e.g., VIP attendees, speaker groups). Use this to get the list of attendee groups configured for your event.

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

### Get Participants

**Slug:** `EVENTEE_GET_PARTICIPANTS`

Tool to retrieve all participants/attendees for an Eventee event. The event is determined by your API token. Use this to get a list of all attendees who have registered or been invited to your event.

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

### Get Partners

**Slug:** `EVENTEE_GET_PARTNERS`

Tool to retrieve all partners/sponsors for an Eventee event. Use this to get information about exhibitors and sponsors associated with your event.

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

### Get Registrations

**Slug:** `EVENTEE_GET_REGISTRATIONS`

Tool to retrieve all registrations for an Eventee event. The event is determined by your API token. Use this to get a list of all registered attendees for your event.

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

### Get Reviews

**Slug:** `EVENTEE_GET_REVIEWS`

Tool to retrieve all reviews for your Eventee event. Reviews can include ratings and feedback from attendees about speakers, lectures, or the event itself. Use this to analyze attendee satisfaction and gather feedback.

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

### Invite Attendee

**Slug:** `EVENTEE_INVITE_ATTENDEE`

Tool to invite attendees to your Eventee event by sending invitation emails to specified users. Use when you need to send event invitations to new attendees.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `users` | array | Yes | Array of user objects to invite. Each user object must contain an email field. |

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

### Invite Registration

**Slug:** `EVENTEE_INVITE_REGISTRATION`

Tool to invite registrants to your Eventee event by email. Use when you need to send event invitations to one or more participants.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `registrations` | array | Yes | Array of registration objects containing email addresses to invite |

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

### List Events

**Slug:** `EVENTEE_LIST_EVENTS`

Retrieves the content structure of your Eventee event including halls, speakers, lectures, workshops, and other event components. The event is determined by your API token. Use this to get an overview of all content within your event.

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

### Update Hall

**Slug:** `EVENTEE_UPDATE_HALL`

Tool to update an existing hall/stage details in an Eventee event. Use when you need to modify hall properties like name, order, or streaming URL.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `name` | string | No | Updated name of the hall/stage |
| `order` | integer | No | Updated display order of the hall |
| `stream` | string | No | Updated streaming URL for the hall if available |
| `hall_id` | string | Yes | Unique identifier of the hall/stage to update |

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

### Update Lecture

**Slug:** `EVENTEE_UPDATE_LECTURE`

Tool to update an existing lecture/session details in Eventee. Use when modifying lecture information such as name, time, or description. Note that all required fields (name, start, end) must be provided even for partial updates.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Unique identifier of the lecture to update |
| `end` | string | Yes | End time of the lecture in format YYYY-MM-DD HH:MM:SS (e.g., 2025-08-26 15:30:00) |
| `name` | string | Yes | Name/title of the lecture |
| `start` | string | Yes | Start time of the lecture in format YYYY-MM-DD HH:MM:SS (e.g., 2025-08-26 14:00:00) |
| `hall_id` | integer | No | ID of the hall where the lecture takes place |
| `description` | string | No | Description of the lecture |

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

### Update Partner

**Slug:** `EVENTEE_UPDATE_PARTNER`

Tool to update an existing partner/sponsor details. Use when you need to modify partner information such as company name, contact details, or status.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Unique identifier of the partner to update |
| `web` | string | No | Website URL |
| `email` | string | No | Contact email address |
| `phone` | string | No | Contact phone number |
| `address` | string | No | Physical address |
| `company` | string | No | Company name |
| `sponsor` | boolean | No | Whether partner is a sponsor |
| `exhibitor` | boolean | No | Whether partner is an exhibitor |
| `description` | string | No | Partner description |

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