---
title: "Create Client"
method: POST
path: "/travel-agent/clients"
tags: ["travel-agent"]
---

# Create Client

`POST /travel-agent/clients`

Create a new client profile.

## Request body

- ClientCreateRequest
  - `name` string, required
  - `email` string, nullable
  - `phone` string, nullable
  - `home_city` string, nullable
  - `notes` string, nullable

## Response `200`

Successful Response

- ClientDetail
  - `id` string, uuid, required
  - `name` string, required
  - `email` string, nullable, required
  - `phone` string, nullable, required
  - `home_city` string, nullable, required
  - `notes` string, nullable, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/stardrift/apis/fastapi.md) · [All operations](https://skmtc.dev/stardrift/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/stardrift/fastapi/revisions/00746572572a/schema)
