# Calendly

## Calendly – Connector Configuration

### Step 1: Create a Developer Account & First Application

* Create a Calendly Developer account: [Create a Developer Account](https://developer.calendly.com/create-a-developer-account)
* Go to [Calendly Console Apps](https://developer.calendly.com/console/apps) and sign up.

> ⚠️ **Note**: This is **not** your Calendly user account. It’s a separate developer account.

***

### Step 2: Register Your OAuth Application

1. **Create a new OAuth application**:
   * Provide a **name** for your application.
   * Select the **kind of application**:
     * Web
   * Select your **environment**:
     * Sandbox (recommended for development)
     * Production (use when going live with customer data)

***

### Step 3: Set Redirect URI

* **Sandbox**: HTTP with `localhost` domain allowed\
  Example:

  ```http
  http://localhost:1234
  ```
* **Production**: Must use HTTPS.

👉 You can add multiple redirect URIs, separated by commas.\
👉 For Appmixer, set the redirect URI to:

```http
https://[YOUR_API_BASE]/auth/docusign/callback
```

Example:

```http
https://api.appmixer.com/auth/docusign/callback
```

![alt text](/files/kcuMrqB2oI27uUI2MOer)

***

### Step 4: Copy Your Credentials

Once the app is created, you’ll see:

* **Client ID**
* **Client Secret**

⚠️ **Important**: These values will only be shown once. Copy them immediately!

***

### Step 5: Connector Configuration

1. Go to the Appmixer BackOffice -> Configuration.
2. Add new configuration: `acme:calendly` .
3. Add your `clientId` and `clientSecret` keys with values.

![alt text](/files/0cIJnUuZkTX6cfdtwhqW)

![alt text](/files/BK3AfF7W0JuJuK12HsxU)

### Step 6: Edit Your Application

* To edit an existing OAuth app in Calendly:
  * Click the menu icon → **Edit**.
* Editable attributes:
  * Application Name
  * Kind of App
  * Environment Type
  * Redirect URI

⚠️ **Note**: Client Secret and Webhook Signing Key **cannot be retrieved again** after creation.

***


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.appmixer.com/connector-configuration/calendly.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
