---
title: "Create a new client"
method: POST
path: "/api/clients"
tags: ["Clients"]
---

# Create a new client

`POST /api/clients`

Creates a new SMB client account

## Request body

- CreateClientDto
  - `name` string, required — Client/company name
  - `email` string — Contact email address
  - `lookupKey` string — Lookup key for client identification

## Response `201`

Client created successfully

- ClientResponseDto
  - `id` string, required — Client unique identifier
  - `name` string, required — Client/company name
  - `email` object, nullable, required — Contact email address
  - `lookupKey` object, nullable, required — Lookup key for external integrations
  - `createdAt` string, date-time, required — Creation timestamp
  - `updatedAt` object, nullable, required — Last update timestamp

## Other responses

- `400` — Bad Request - Invalid input data
- `401` — Unauthorized - Invalid or missing API key
- `500` — Internal server error

---

[API](https://skmtc.net/navistone/apis/zazmic-platform-api.md) · [All operations](https://skmtc.net/navistone/apis/zazmic-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/navistone/zazmic-platform-api/revisions/e2454b713133/schema)
