Skip to main content
PATCH
/
api
/
clients
/
{id}
Update Client
curl --request PATCH \
  --url https://app.replyify.ai/api/clients/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "service_description": "<string>",
  "calendar_link": "<string>",
  "auto_send_enabled": true,
  "auto_send_delay_minutes": 123,
  "auto_draft_enabled": true
}
'

Path Parameters

id
string
required
The client ID to update

Body Parameters

name
string
Update display name
service_description
string
Update the service description used by AI when generating replies
Update the calendar booking link
auto_send_enabled
boolean
Enable or disable automatic sending of AI-generated replies
auto_send_delay_minutes
number
Minutes to wait before auto-sending (default: 5)
auto_draft_enabled
boolean
Enable or disable automatic AI draft generation for new replies

Response

Returns the updated client object.
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
  }'