# Chmeetings

CHMeetings is a comprehensive church management platform offering event planning, member engagement tracking, donation management, volunteer coordination, and communication tools for faith-based organizations and religious communities

- **Category:** event management
- **Auth:** API_KEY
- **Composio Managed App Available?** N/A
- **Tools:** 28
- **Triggers:** 0
- **Slug:** `CHMEETINGS`
- **Version:** 20260312_00

## Tools

### Invite Meeting Attendee

**Slug:** `CHMEETINGS_ATTENDEE_CREATE`

Tool to invite a new attendee to a specified meeting. Use when you need to add attendees before the meeting begins.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email` | string | Yes | Email address of the attendee |
| `phone` | string | No | Phone number of the attendee, if available |
| `last_name` | string | Yes | Last name of the new attendee |
| `first_name` | string | Yes | First name of the new attendee |
| `meeting_id` | string | Yes | ID of the meeting to invite the attendee to |

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

**Slug:** `CHMEETINGS_ATTENDEE_GET`

Tool to retrieve details for a specific attendee. Use when you have an attendee_id and need the attendee's full profile.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `attendee_id` | string | Yes | Unique identifier of the attendee to fetch |

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

### ChMeetings: Create Meeting

**Slug:** `CHMEETINGS_CREATE_MEETING`

Tool to create a new meeting in ChMeetings. Use when you have all meeting details and need to schedule it via the ChMeetings API.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `end` | string | Yes | ISO 8601 end date/time (must be after `start`) (e.g., '2023-07-01T11:00:00Z') |
| `name` | string | Yes | Title of the meeting |
| `notes` | string | No | Additional notes or agenda items |
| `start` | string | Yes | ISO 8601 start date/time (e.g., '2023-07-01T10:00:00Z') |
| `location` | string | No | Meeting location or room name |

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

### ChMeetings: Create Organization

**Slug:** `CHMEETINGS_CREATE_ORGANIZATION`

Tool to create a new organization.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `organization` | object | Yes | Organization fields to create. Include at least 'name'. Other fields like 'timezone', 'address', 'description' may be provided. |

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

### ChMeetings: Create Reminder

**Slug:** `CHMEETINGS_CREATE_REMINDER`

Tool to create/schedule a reminder for a meeting in ChMeetings.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `extra` | object | No | Additional parameters to include in the request body for forward compatibility |
| `title` | string | No | Short title for the reminder |
| `message` | string | No | Reminder message content |
| `send_at` | string | No | ISO 8601 scheduled date/time for the reminder (e.g., '2025-10-29T10:15:00Z') |
| `channels` | array | No | Notification channels to use (e.g., ['email', 'sms', 'push']) |
| `timezone` | string | No | IANA timezone for scheduling (e.g., 'UTC', 'America/New_York') |
| `meeting_id` | string | Yes | ID of the meeting to which this reminder belongs |
| `recipient_ids` | array | No | List of recipient person IDs for targeted reminders |

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

**Slug:** `CHMEETINGS_DELETE_MEETING_ATTENDEE`

Tool to remove an attendee from a meeting. Use after confirming attendee details.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `meeting_id` | string | Yes | ID of the meeting from which to remove the attendee |
| `attendee_id` | string | Yes | ID of the attendee to delete from the meeting |

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

**Slug:** `CHMEETINGS_LIST_MEETING_ATTENDEES`

Tool to list attendees of a meeting. Use when you need to retrieve attendees for a specific meeting.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination, starting from 1. |
| `per_page` | integer | No | Number of records per page. |
| `meeting_id` | string | Yes | Unique identifier of the meeting. |

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

### ChMeetings: Delete Meeting

**Slug:** `CHMEETINGS_MEETINGS_DELETE`

Tool to delete an existing meeting. Use when you have confirmed the meeting ID to permanently remove the meeting.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `meeting_id` | string | Yes | Identifier of the meeting to delete. Must be a valid meeting ID string. |

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

### ChMeetings: Get Meeting

**Slug:** `CHMEETINGS_MEETINGS_GET`

Tool to retrieve a specific meeting's details by ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Unique identifier of the meeting to retrieve |

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

### ChMeetings: Update Meeting

**Slug:** `CHMEETINGS_MEETINGS_UPDATE`

Tool to update meeting details. Use when modifying an existing meeting; call after retrieving meeting ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `updates` | object | Yes | A dictionary of fields and their new values to apply to the meeting |
| `meeting_id` | string | Yes | The unique identifier of the meeting 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 |

### ChMeetings: Send Notification

**Slug:** `CHMEETINGS_NOTIFICATIONS_SEND`

Tool to attempt sending a notification.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `extra` | object | No | Additional parameters to include in the request body for forward compatibility. |
| `message` | string | No | Notification message/body. |
| `subject` | string | No | Subject/title of the notification (e.g., email subject). |
| `channels` | array | No | Channels to send the notification through (e.g., ['email', 'sms', 'push']). |
| `test_mode` | boolean | No | If true, attempt a dry-run/test mode when supported. |
| `meeting_id` | string | No | Meeting ID related to this notification (if applicable). |
| `recipient_ids` | array | No | List of recipient person IDs for targeted notifications. |

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

### ChMeetings: Get Organization

**Slug:** `CHMEETINGS_ORGANIZATION_GET`

Tool to get details of a specific organization. Use when you have confirmed the organization ID and need full organization data.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `organization_id` | string | Yes | Unique identifier of the organization to fetch |

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

### ChMeetings: Delete Organization

**Slug:** `CHMEETINGS_ORGANIZATIONS_DELETE`

Tool to delete an existing organization. Use when you have confirmed the organization ID to permanently remove the organization.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `organization_id` | string | Yes | Identifier of the organization to delete. Must be a valid organization ID string. |

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

### ChMeetings: List Organizations

**Slug:** `CHMEETINGS_ORGANIZATIONS_LIST`

Tool to list all organizations. Use when you need to retrieve organization data; no parameters required.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (optional) |
| `search` | string | No | Search term to filter organizations (optional) |
| `per_page` | integer | No | Items per page for pagination (optional) |

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

### ChMeetings: Update Organization

**Slug:** `CHMEETINGS_ORGANIZATION_UPDATE`

Tool to update an organization's information. Use when modifying an existing organization; call after retrieving organization ID.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `updates` | object | Yes | A dictionary of fields and their new values to apply to the organization |
| `organization_id` | string | Yes | The unique identifier of the organization 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 |

### ChMeetings: Delete Person

**Slug:** `CHMEETINGS_PEOPLE_DELETE`

Tool to delete a person record. Use after confirming the person ID you wish to remove.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `person_id` | string | Yes | Unique identifier (integer ID) of the person 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 |

### ChMeetings: List People

**Slug:** `CHMEETINGS_PEOPLE_LIST`

Tool to retrieve list of People records from ChMeetings. Use when syncing people data; rate limit 100 requests per 20 seconds.

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

### ChMeetings: Update Person

**Slug:** `CHMEETINGS_PEOPLE_UPDATE`

Tool to update an existing person's information in ChMeetings. Use when modifying person details; call after retrieving person ID via CHMEETINGS_PEOPLE_LIST or CHMEETINGS_PEOPLE_GET. Supported update fields (use snake_case): - Personal: first_name, last_name, middle_name, nick_name, native_name, email, mobile, telephone, birth_date - Demographics: gender (Male/Female/Unknown), social_status (Single/Married/etc.) - Professional: job_title, work_place, qualification, education_level, school - Religious: church, baptism_date, baptism_location, is_deacon, rank, bishop_donor - Communication: do_not_text, do_not_email (boolean) - Address: address object with country, state, city, etc.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `updates` | object | Yes | A dictionary of fields and their new values to apply to the person. Use snake_case field names (e.g., first_name, last_name, email, mobile, birth_date, gender, social_status, job_title, etc.) |
| `person_id` | string | Yes | The unique identifier (integer) of the person 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 |

### ChMeetings: Create Person

**Slug:** `CHMEETINGS_PERSON_CREATE`

Tool to create a new person record in ChMeetings People directory. Use when you need to add a person before tracking interactions. Required fields: first_name, last_name

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `email` | string | No | Email address of the person |
| `gender` | string | No | Gender of the person (e.g., 'male', 'female') |
| `mobile` | string | No | Mobile phone number of the person |
| `last_name` | string | Yes | Last name of the person (required) |
| `birth_date` | string | No | Birth date in ISO format (YYYY-MM-DD) |
| `first_name` | string | Yes | First name of the person (required) |
| `middle_name` | string | No | Middle name of the person |

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

### ChMeetings: Get Person

**Slug:** `CHMEETINGS_PERSON_GET`

Tool to retrieve a specific person's details by ID. Use when you have a person ID and need their full record.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Unique identifier of the person to retrieve |

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

### ChMeetings: Delete Reminder

**Slug:** `CHMEETINGS_REMINDER_DELETE`

Tool to cancel a scheduled reminder. Use when you have the reminder ID and want to stop it before execution.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `reminder_id` | string | Yes | Identifier of the scheduled reminder to cancel |

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

### ChMeetings: Get Reminder

**Slug:** `CHMEETINGS_REMINDER_GET`

Tool to retrieve details of a specific reminder. Use when you have the reminder ID and need its full information.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Unique identifier of the reminder to fetch |

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

### ChMeetings: List Reminders

**Slug:** `CHMEETINGS_REMINDERS_LIST`

Tool to list reminders from ChMeetings. Use when you need to retrieve reminder records; rate limit applies.

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

### ChMeetings: Update Reminder

**Slug:** `CHMEETINGS_REMINDER_UPDATE`

Tool to update an existing reminder. Use when adjusting scheduled reminders after creation.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `id` | string | Yes | Unique identifier of the reminder to update |
| `extra` | object | No | Additional parameters to include in the request body for forward compatibility |
| `title` | string | No | Short title for the reminder |
| `message` | string | No | Reminder message content |
| `send_at` | string | No | ISO 8601 scheduled date/time for the reminder (e.g., '2025-10-29T10:15:00Z') |
| `channels` | array | No | Notification channels to use (e.g., ['email', 'sms', 'push']) |
| `timezone` | string | No | IANA timezone for scheduling (e.g., 'UTC', 'America/New_York') |
| `recipient_ids` | array | No | List of recipient person IDs for targeted reminders |

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

### ChMeetings: Get Settings

**Slug:** `CHMEETINGS_SETTINGS_GET`

Tool to retrieve account configuration settings. Returns the available lookup values for genders, social statuses, grade levels, and family roles used throughout ChMeetings. Use when you need to know what options are available for creating or updating people and families.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `include_genders` | boolean | No | Include available gender values in the response |
| `include_family_roles` | boolean | No | Include available family role values in the response |
| `include_grade_values` | boolean | No | Include available grade/education level values in the response |
| `include_social_statuses` | boolean | No | Include available social status values in the response |

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

### ChMeetings: Update Settings

**Slug:** `CHMEETINGS_SETTINGS_UPDATE`

Tool to update account settings. Use when updating account-level preferences after authentication.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `settings` | object | Yes | A dictionary of account settings to update, where keys are setting names and values are the new settings. |

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

**Slug:** `CHMEETINGS_UPDATE_ATTENDEE_ROLE`

Tool to update the role of an attendee. Use when you need to change an existing attendee's role after creation.

#### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `role` | string | Yes | New role for the attendee (e.g., 'speaker', 'participant') |
| `attendee_id` | string | Yes | ID of the attendee 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 |

### ChMeetings: Get User Profile

**Slug:** `CHMEETINGS_USER_PROFILE_GET`

Tool to retrieve current user's profile information. Use when you need to get the authenticated user's profile details.

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