calendly
Installation
SKILL.md
Troubleshooting
If requests fail, run zero doctor check-connector --env-name CALENDLY_TOKEN or zero doctor check-connector --url https://api.calendly.com/users/me --method GET
Core APIs
Get Current User
Returns the authenticated user's URI and organization URI — needed for subsequent calls:
curl -s "https://api.calendly.com/users/me" --header "Authorization: Bearer $CALENDLY_TOKEN" | jq '{uri, name, email, organization: .current_organization}'
List Event Types
List all event types for the current user. First get your user URI from the step above.
Replace <user-uri> with the full URI from GET /users/me (e.g., https://api.calendly.com/users/AAAAAAA):