n8n-nodes-meetbot
v0.2.1
Published
n8n community node for Meetbot booking API
Readme
n8n-nodes-meetbot
This is an n8n community node for the Meetbot scheduling API, allowing you to integrate meeting scheduling and booking capabilities into your n8n workflows.
Installation
Follow the installation guide in the n8n community nodes documentation.
Operations
Get Pages
Retrieve all scheduling pages for the authenticated user. This operation requires no parameters and returns a list of all available scheduling pages with their titles, durations, and URLs.
Get Page Info
Get detailed information about a specific scheduling page. Returns information such as title, duration, owner name, and maximum booking days into the future.
Required Parameters:
- Page: The URL of the scheduling page (e.g.,
https://meet.bot/user/30min)
Get Slots
Retrieve available booking slots with optional filters. This operation allows you to get available time slots for a specific scheduling page with various filtering options.
Required Parameters:
- Page: The scheduling page URL (e.g.,
https://meet.bot/user/30min)
Optional Parameters:
- Count: Maximum number of results to return (default: 10)
- Start Date: Start date boundary for the query (YYYY-MM-DD format)
- End Date: End date boundary for the query (YYYY-MM-DD format)
- Timezone: IANA timezone format (e.g.,
America/New_York) - Include Booking Link: If true, includes shareable links for each slot
Make Booking
Create a new meeting booking. This operation allows you to book a meeting slot with guest information and optional notes.
Required Parameters:
- Page: The scheduling page URL (e.g.,
https://meet.bot/user/30min) - Start Time: Starting time of the meeting in ISO 8601 format
- Guest Name: Name of the person making the booking
- Guest Email: Email address of the person making the booking
Optional Parameters:
- Notes: Any notes for the booking (will show in calendar invite)
Credentials
You need to configure your Meetbot API credentials:
- API Token: Your Meetbot API token for authentication
Usage Examples
Basic Workflow: Get Available Slots and Book a Meeting
- Get Slots Node: Configure to retrieve available slots for your scheduling page
- Set Node: Process the slots data to select a preferred time
- Make Booking Node: Use the selected slot to create a booking
Advanced Workflow: Multi-Page Management
- Get Pages Node: Retrieve all your scheduling pages
- Split In Batches Node: Process each page individually
- Get Page Info Node: Get detailed information for each page
- Get Slots Node: Check availability across multiple pages
- Make Booking Node: Book meetings based on availability
API Endpoints
This node integrates with the following Meetbot API endpoints:
GET /v1/pages- List all scheduling pagesGET /v1/info- Get page informationGET /v1/slots- Get available slotsPOST /v1/book- Create a booking
Response Formats
Get Pages Response
{
"email": "[email protected]",
"pages": [
{
"title": "30 Minute Meeting",
"duration": 30,
"url": "https://meet.bot/user/30min"
}
]
}Get Slots Response
{
"count": 5,
"duration": 30,
"slots": [
{
"start": "2025-01-15T10:00:00Z",
"url": "https://meet.bot/user/30min/2025-01-15T10:00:00Z"
}
]
}Make Booking Response
{
"success": true,
"ical_uid": "unique-booking-identifier"
}Error Handling
The node includes comprehensive error handling for:
- Invalid page URLs
- Missing required parameters
- API authentication errors
- Validation errors from the Meetbot API
License
MIT
