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

> Remove a client from your workspace

## Path Parameters

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

## Response

Returns a success confirmation. Associated connections and replies are preserved but will no longer be linked to this client.

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

<Warning>
  Deleting a client removes the AI context (service description, calendar link) used for generating replies. Existing connections linked to this client will need to be reassigned.
</Warning>
