Skip to main content
POST
/
api
/
clients
Create Client
curl --request POST \
  --url https://app.replyify.ai/api/clients \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "service_description": "<string>",
  "calendar_link": "<string>"
}
'

Body Parameters

name
string
required
Client display name
service_description
string
Description of the client’s service or product. This is used by AI when generating reply drafts to ensure responses are contextually relevant.
Calendar booking link (Calendly, Cal.com, etc.) to include in AI-generated responses when a meeting is appropriate.

Response

Returns the created client object.
curl -X POST "https://app.replyify.ai/api/clients" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Acme Corp",
    "service_description": "B2B SaaS for project management. We help teams ship 2x faster with AI-powered workflows.",
    "calendar_link": "https://calendly.com/acme/30min"
  }'
A detailed service_description significantly improves the quality of AI-generated reply drafts. Include what the client does, who they serve, and their key differentiators.