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

# Create Client

> Create a new client in your workspace

## Body Parameters

<ParamField body="name" type="string" required>
  Client display name
</ParamField>

<ParamField body="service_description" type="string">
  Description of the client's service or product. This is used by AI when generating reply drafts to ensure responses are contextually relevant.
</ParamField>

<ParamField body="calendar_link" type="string">
  Calendar booking link (Calendly, Cal.com, etc.) to include in AI-generated responses when a meeting is appropriate.
</ParamField>

## Response

Returns the created client object.

<CodeGroup>
  ```bash cURL theme={null}
  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"
    }'
  ```

  ```javascript Node.js theme={null}
  const response = await fetch("https://app.replyify.ai/api/clients", {
    method: "POST",
    headers: {
      Authorization: "Bearer YOUR_API_KEY",
      "Content-Type": "application/json",
    },
    body: JSON.stringify({
      name: "Acme Corp",
      service_description: "B2B SaaS for project management.",
      calendar_link: "https://calendly.com/acme/30min",
    }),
  });
  ```
</CodeGroup>

<Info>
  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.
</Info>
