> ## 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.

# Delete Connection

> Permanently remove a connection

## Path Parameters

<ParamField path="id" type="string" required>
  The connection ID to delete
</ParamField>

## Response

Returns a success confirmation. The connection and its webhook endpoint are permanently removed. Existing replies that were received through this connection are preserved.

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE "https://app.replyify.ai/api/connections/conn_abc123" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript Node.js theme={null}
  await fetch("https://app.replyify.ai/api/connections/conn_abc123", {
    method: "DELETE",
    headers: { Authorization: "Bearer YOUR_API_KEY" },
  });
  ```
</CodeGroup>

<Warning>
  This action is permanent. The webhook URL will stop working immediately, so make sure to remove it from your sequencer's settings first.
</Warning>
