CommunicationDocumentedScanned

calendly

Calendly scheduling integration.

Share:

Installation

npx clawhub@latest install calendly

View the full skill documentation and source below.

Documentation

Calendly

Scheduling automation.

Environment

export CALENDLY_API_TOKEN="xxxxxxxxxx"

Get Current User

curl "" \
  -H "Authorization: Bearer $CALENDLY_API_TOKEN"

List Event Types

curl "" \
  -H "Authorization: Bearer $CALENDLY_API_TOKEN"

List Scheduled Events

curl "" \
  -H "Authorization: Bearer $CALENDLY_API_TOKEN"

Get Event Details

curl "" \
  -H "Authorization: Bearer $CALENDLY_API_TOKEN"

List Invitees

curl "" \
  -H "Authorization: Bearer $CALENDLY_API_TOKEN"

Cancel Event

curl -X POST "" \
  -H "Authorization: Bearer $CALENDLY_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"reason": "Scheduling conflict"}'

Links

  • Dashboard:
  • Docs: