calendly
Manage Calendly scheduling - list events, bookings, and availability. Create scheduling links programmatically.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/mrgoodb/calendlyCalendly
Scheduling automation.
Environment
export CALENDLY_API_TOKEN="xxxxxxxxxx"
Get Current User
curl "https://api.calendly.com/users/me" \
-H "Authorization: Bearer $CALENDLY_API_TOKEN"
List Event Types
curl "https://api.calendly.com/event_types?user=https://api.calendly.com/users/USERID" \
-H "Authorization: Bearer $CALENDLY_API_TOKEN"
List Scheduled Events
curl "https://api.calendly.com/scheduled_events?user=https://api.calendly.com/users/USERID&status=active" \
-H "Authorization: Bearer $CALENDLY_API_TOKEN"
Get Event Details
curl "https://api.calendly.com/scheduled_events/{uuid}" \
-H "Authorization: Bearer $CALENDLY_API_TOKEN"
List Invitees
curl "https://api.calendly.com/scheduled_events/{event_uuid}/invitees" \
-H "Authorization: Bearer $CALENDLY_API_TOKEN"
Cancel Event
curl -X POST "https://api.calendly.com/scheduled_events/{uuid}/cancellation" \
-H "Authorization: Bearer $CALENDLY_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"reason": "Scheduling conflict"}'
Links
- Dashboard: https://calendly.com/app/home
- Docs: https://developer.calendly.com
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-mrgoodb-calendly": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
smartsheet
Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows.
onelogin
Manage users and apps via OneLogin API. Handle SSO and identity management.
google-sheets
Read and write Google Sheets data. Create spreadsheets, update cells, and manage worksheets via Sheets API.
postmark
Send transactional emails with high deliverability via Postmark API. Manage templates, track bounces, and view analytics.
loom
Manage Loom video recordings - list, share, and get analytics via Loom API.