> ## Documentation Index
> Fetch the complete documentation index at: https://mako-docs.devinagiffy.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Client

> Create a new client for the organization

<Note>Requires Admin or Manager role.</Note>

## Request Body

<ParamField body="name" type="string" required>
  Client name (1-200 characters)
</ParamField>

<ParamField body="deployDay" type="string">
  Day of the week for content deploys (e.g., "Monday", "Friday")
</ParamField>

<ParamField body="contentCadence" type="integer" default="1">
  Number of content posts per week (1-10)
</ParamField>

## Response

The created client object.

<ResponseField name="id" type="string">
  Client UUID
</ResponseField>

<ResponseField name="name" type="string">
  Client name
</ResponseField>

<ResponseField name="deployDay" type="string">
  Deploy day of week
</ResponseField>

<ResponseField name="contentCadence" type="integer">
  Posts per week
</ResponseField>

<ResponseField name="status" type="string">
  Client status (active)
</ResponseField>

<ResponseField name="createdAt" type="string">
  Creation timestamp
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://api.hitler.app/api/clients" \
    -H "Authorization: Bearer YOUR_TOKEN" \
    -H "Content-Type: application/json" \
    -d '{"name": "Acme Corp", "deployDay": "Monday", "contentCadence": 2}'
  ```

  ```typescript TypeScript theme={null}
  const client = await api.createClient({
    name: "Acme Corp",
    deployDay: "Monday",
    contentCadence: 2,
  });
  ```
</RequestExample>

<ResponseExample>
  ```json 201 theme={null}
  {
    "id": "client-uuid-1",
    "name": "Acme Corp",
    "organizationId": "org-uuid-1",
    "deployDay": "Monday",
    "contentCadence": 2,
    "status": "active",
    "assignedWriters": null,
    "assignedDesigners": null,
    "createdAt": "2026-03-06T10:00:00.000Z",
    "updatedAt": "2026-03-06T10:00:00.000Z"
  }
  ```
</ResponseExample>
