> ## Documentation Index
> Fetch the complete documentation index at: https://docs.replyify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Connection

> Connect a new email sequencer platform to Replyify

Create a connection to one of the supported email sequencer platforms. The platform is specified in the URL path.

## Supported Platforms

| Platform   | Endpoint                           |
| ---------- | ---------------------------------- |
| Instantly  | `POST /api/connections/instantly`  |
| EmailBison | `POST /api/connections/emailbison` |
| Lemlist    | `POST /api/connections/lemlist`    |

## Body Parameters

<ParamField body="name" type="string" required>
  Display name for the connection (e.g., "Production Instantly")
</ParamField>

<ParamField body="api_key" type="string" required>
  API key for the sequencer platform. Stored encrypted at rest.
</ParamField>

<ParamField body="client_id" type="string" required>
  Client to associate incoming replies with
</ParamField>

<ParamField body="instance_url" type="string">
  Required for **EmailBison** only. Your EmailBison instance URL.
</ParamField>

## Response

Returns the created connection including the webhook URL to configure in your sequencer.

<CodeGroup>
  ```bash cURL (Instantly) theme={null}
  curl -X POST "https://app.replyify.ai/api/connections/instantly" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "name": "My Instantly Account",
      "api_key": "inst_abc123...",
      "client_id": "client_xyz789"
    }'
  ```

  ```bash cURL (EmailBison) theme={null}
  curl -X POST "https://app.replyify.ai/api/connections/emailbison" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "name": "My EmailBison Account",
      "api_key": "eb_abc123...",
      "instance_url": "https://app.emailbison.com",
      "client_id": "client_xyz789"
    }'
  ```
</CodeGroup>

<Info>
  After creating a connection, copy the returned `webhook_url` and configure it in your sequencer's webhook settings so replies are forwarded to Replyify.
</Info>
