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

# Create a customer

`POST /customers/`

Create a customer in Áskell. Requires a secret key. To make it easier linking customers to existing  systems, it is your responsibility to assign a reference to the customer so that you can look  them up later. This can be an id, a UUID or whatever suits you. It's best to keep it simple.

## Request body

- CustomerCreate
  - `first_name` string, required
  - `last_name` string, required
  - `email` string, required
  - `phone` string
  - `customer_reference` string, required

## Response `201`

Successful operation

## Other responses

- `400` — Invalid status value

---

[API](https://skmtc.net/askell/apis/a-skell-api.md) · [All operations](https://skmtc.net/askell/apis/a-skell-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/askell/a-skell-api/versions/9234f937fa26/schema)
