Calendly Integration

Connect Calendly events and scheduling to Metalogue

Calendly Integration

Connect your Calendly account to index events and scheduling data.

Quick Start

const connector = await client.createConnector({
  connector_type: 'calendly',
  display_name: 'Company Calendly',
  credentials: {
    access_token: 'xxxxxxxxxxxx',
  },
});

await client.syncConnector(connector.connector_id, true);

Synced Content

Content TypeIndexed Fields
Eventsname, description
Scheduled Eventsinvitee, notes
Event Typesname, description

Configuration

{
  "settings": {
    "sync_past_events": true,
    "days_back": 90
  }
}

Next Steps