Chmeetings

Learn how to use Chmeetings with Composio

Overview

SLUG: CHMEETINGS

Description

ChMeetings is a church management solution assisting with event planning, member engagement, donations tracking, and volunteer coordination for faith-based organizations

Authentication Details

full
stringDefaults to https://api.chmeetings.com/v1Required
generic_api_key
stringRequired

Connecting to Chmeetings

Create an auth config

Use the dashboard to create an auth config for the Chmeetings toolkit. This allows you to connect multiple Chmeetings accounts to Composio for agents to use.

1

Select App

Navigate to Chmeetings.

2

Configure Auth Config Settings

Select among the supported auth schemes of and configure them here.

3

Create and Get auth config ID

Click “Create Chmeetings Auth Config”. After creation, copy the displayed ID starting with ac_. This is your auth config ID. This is not a sensitive ID — you can save it in environment variables or a database. This ID will be used to create connections to the toolkit for a given user.

Connect Your Account

Using API Key

1from composio import Composio
2
3# Replace these with your actual values
4chmeetings_auth_config_id = "ac_YOUR_CHMEETINGS_CONFIG_ID" # Auth config ID created above
5user_id = "0000-0000-0000" # UUID from database/app
6
7composio = Composio()
8
9def authenticate_toolkit(user_id: str, auth_config_id: str):
10 # Replace this with a method to retrieve an API key from the user.
11 # Or supply your own.
12 user_api_key = input("[!] Enter API key")
13
14 connection_request = composio.connected_accounts.initiate(
15 user_id=user_id,
16 auth_config_id=auth_config_id,
17 config={"auth_scheme": "API_KEY", "val": {"generic_api_key": user_api_key}}
18 )
19
20 # API Key authentication is immediate - no redirect needed
21 print(f"Successfully connected Chmeetings for user {user_id}")
22 print(f"Connection status: {connection_request.status}")
23
24 return connection_request.id
25
26
27connection_id = authenticate_toolkit(user_id, chmeetings_auth_config_id)
28
29# You can verify the connection using:
30connected_account = composio.connected_accounts.get(connection_id)
31print(f"Connected account: {connected_account}")

Tools

Executing tools

To prototype you can execute some tools to see the responses and working on the Chmeetings toolkit’s playground

Python
1from composio import Composio
2from openai import OpenAI
3import json
4
5openai = OpenAI()
6composio = Composio()
7
8# User ID must be a valid UUID format
9user_id = "0000-0000-0000" # Replace with actual user UUID from your database
10
11tools = composio.tools.get(user_id=user_id, toolkits=["CHMEETINGS"])
12
13print("[!] Tools:")
14print(json.dumps(tools))
15
16def invoke_llm(task = "What can you do?"):
17 completion = openai.chat.completions.create(
18 model="gpt-4o",
19 messages=[
20 {
21 "role": "user",
22 "content": task, # Your task here!
23 },
24 ],
25 tools=tools,
26 )
27
28 # Handle Result from tool call
29 result = composio.provider.handle_tool_calls(user_id=user_id, response=completion)
30 print(f"[!] Completion: {completion}")
31 print(f"[!] Tool call result: {result}")
32
33invoke_llm()

Tool List

Tool Name: Invite Meeting Attendee

Description

Tool to invite a new attendee to a specified meeting. Use when you need to add attendees before the meeting begins. The action is resilient: it normalizes the base URL to /api/v1, includes the apiKey header if available, and returns a structured raw_response without raising on HTTP errors to aid diagnostics in environments where credentials or resources may be missing.

Action Parameters

email
stringRequired
first_name
stringRequired
last_name
stringRequired
meeting_id
stringRequired
phone
string

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: Get Attendee Details

Description

Tool to retrieve details for a specific attendee. Use when you have an attendee_id and need the attendee's full profile. The action is resilient: it normalizes the base URL to /api/v1, includes the apiKey header if available, tries a fallback URL if the primary returns 404, and returns a structured raw_response without raising on HTTP errors to aid diagnostics.

Action Parameters

attendee_id
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Create Meeting

Description

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

Action Parameters

end
stringRequired
location
string
name
stringRequired
notes
string
start
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Create Organization

Description

Tool to create a new organization. Attempts POST /organizations on the provided base_url and falls back to /api/v1 if the initial request returns 404 (common base path mismatch).

Action Parameters

organization
objectRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Create Reminder

Description

Tool to create/schedule a reminder for a meeting in ChMeetings. This implementation performs a POST to /reminders and returns the raw JSON response without raising on HTTP error codes, enabling diagnostic testing even when authentication or parameters are missing.

Action Parameters

channels
array
extra
object
meeting_id
stringRequired
message
string
recipient_ids
array
send_at
string
timezone
string
title
string

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: Delete Meeting Attendee

Description

Tool to remove an attendee from a meeting. Use after confirming attendee details. The action is resilient: it normalizes the base URL to /api/v1, includes the apiKey header if available, and returns a boolean success flag without raising on HTTP errors. This allows diagnostic usage even when credentials or resources are not present.

Action Parameters

attendee_id
stringRequired
meeting_id
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: List Meeting Attendees

Description

Tool to list attendees of a meeting. Use when you need to retrieve attendees for a specific meeting. Tries primary base path then falls back to /api/v1 and always returns a structured raw response without raising on HTTP errors, to allow inspection and debugging.

Action Parameters

meeting_id
stringRequired
page
integer
per_page
integer

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Delete Meeting

Description

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

Action Parameters

meeting_id
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Get Meeting

Description

Tool to retrieve a specific meeting's details by ID. Attempts primary base path then falls back to /api/v1. Returns the full meeting record as JSON or structured diagnostic details when unavailable.

Action Parameters

id
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Update Meeting

Description

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

Action Parameters

meeting_id
stringRequired
updates
objectRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Send Notification

Description

Tool to attempt sending a notification. Since the official endpoint is not documented, this action performs a POST against a plausible path and returns the raw response without raising on HTTP errors.

Action Parameters

channels
array
extra
object
meeting_id
string
message
string
recipient_ids
array
subject
string
test_mode
boolean

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Get Organization

Description

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

Action Parameters

organization_id
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Delete Organization

Description

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

Action Parameters

organization_id
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: List Organizations

Description

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

Action Parameters

page
integer
per_page
integer
search
string

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Update Organization

Description

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

Action Parameters

organization_id
stringRequired
updates
objectRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Delete Person

Description

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

Action Parameters

person_id
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Get Person

Description

Tool to retrieve a specific person's details by ID. Use after confirming the person ID.

Action Parameters

id
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: List People

Description

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

Action Parameters

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Update Person

Description

Tool to update an existing persons information. Use when modifying person details; call after retrieving person ID.

Action Parameters

person_id
stringRequired
updates
objectRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Create Person

Description

Tool to create a new person record in ChMeetings People directory. Use when you need to add a person before tracking interactions.

Action Parameters

person_data
objectRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Get Person

Description

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

Action Parameters

id
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Delete Reminder

Description

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

Action Parameters

reminder_id
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Get Reminder

Description

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

Action Parameters

id
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: List Reminders

Description

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

Action Parameters

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Update Reminder

Description

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

Action Parameters

channels
array
extra
object
id
stringRequired
message
string
recipient_ids
array
send_at
string
timezone
string
title
string

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Get Settings

Description

Tool to retrieve account settings. Use when you need to fetch your ChMeetings account configuration.

Action Parameters

page
integer
per_page
integer
search
string

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Update Settings

Description

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

Action Parameters

settings
objectRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: Update attendee role

Description

Tool to update the role of an attendee. Use when you need to change an existing attendee's role after creation. The action is resilient: it normalizes the base URL to /api/v1, includes the apiKey header if available, tries a fallback URL if the primary returns 404, and returns a structured raw_response without raising on HTTP errors to aid diagnostics in environments where credentials or resources may be missing.

Action Parameters

attendee_id
stringRequired
role
stringRequired

Action Response

data
objectRequired
error
string
successful
booleanRequired

Tool Name: ChMeetings: Get User Profile

Description

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

Action Parameters

Action Response

data
objectRequired
error
string
successful
booleanRequired