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

# Update Client

> Update a client's settings

## Path Parameters

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

## Body Parameters

<ParamField body="name" type="string">
  Update display name
</ParamField>

<ParamField body="service_description" type="string">
  Update the service description used by AI when generating replies
</ParamField>

<ParamField body="calendar_link" type="string">
  Update the calendar booking link
</ParamField>

<ParamField body="auto_send_enabled" type="boolean">
  Enable or disable automatic sending of AI-generated replies
</ParamField>

<ParamField body="auto_send_delay_minutes" type="number">
  Minutes to wait before auto-sending (default: 5)
</ParamField>

<ParamField body="auto_draft_enabled" type="boolean">
  Enable or disable automatic AI draft generation for new replies
</ParamField>

## Response

Returns the updated client object.

<CodeGroup>
  ```bash cURL theme={null}
  curl -X PATCH "https://app.replyify.ai/api/clients/client_xyz789" \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "service_description": "Updated service description for better AI context",
      "auto_draft_enabled": true
    }'
  ```
</CodeGroup>
