---
title: "Create customer"
method: POST
path: "/customers"
tags: ["Customers"]
---

# Create customer

`POST /customers`

## Request body

- CustomerCreateRequest
  - `customer` object, required
    - `name` string, required
    - `external_customer_id` string, nullable

## Response `201`

Customer created

- CustomerResponse
  - `data` Customer, required
    - `id` string, uuid, required
    - `name` string, required
    - `external_customer_id` string, nullable — Your internal customer ID
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required

## Other responses

- `401` — Missing or invalid API key
- `422` — Request validation failed

---

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