---
title: "Create New Customer"
method: POST
path: "/api/v1/customers"
tags: ["Customer"]
---

# Create New Customer

`POST /api/v1/customers`

This API is used to create new customer.

## Query parameters

- `sandbox` string, required

## Request body

- CreateCustomerDto
  - `emailAddress` string, required — Email address of the customer.
  - `firstName` string — First name of the customer.
  - `lastName` string — Last name of the customer.
  - `dateofBirth` string — Date of birth of the customer.
  - `street` string — Street name of customer address.
  - `city` string — City name of customer address.
  - `state` string — State name of customer address.
  - `country` string — Country name of customer address.
  - `postalCode` string — Postal code of customer address.
  - `status` string — Customer status. Can be `A` - Active, `I` - Inactive

## Response `201`

Cunstomers fetched.

- object
  - `statusCode` number
  - `message` string
  - `data` object — Customer object. See https://securo.readme.io/reference/customer-object for more information.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden Resources

---

[API](https://skmtc.dev/securo/apis/securo-api.md) · [All operations](https://skmtc.dev/securo/apis/securo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/securo/securo-api/revisions/6cdab218fa72/schema)
