---
title: "Create Customer"
method: POST
path: "/v1/customers"
tags: ["Customers (v1)"]
---

# Create Customer

`POST /v1/customers`

Create a new customer with first name, last name, email, and default device

## Request body

- CreateCustomerRequestV1
  - `data` CreateCustomerRequestDataV1, required
    - `attributes` CreateCustomerAttributesV1, required
      - `default_device` 'phone' | 'email', required
      - `email` string, required
      - `first_name` string, required
      - `last_name` string, required
      - `phone` string

## Response `200`

OK

- CreateCustomerResponseV1
  - `data` CustomerDataV1
    - `attributes` CustomerAttributesV1
      - `created_at` integer
      - `default_device` string
      - `email` string
      - `first_name` string
      - `last_name` string
      - `livemode` boolean
      - `phone` string
      - `updated_at` integer
    - `id` string
    - `type` string

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `500` — Internal Server Error

---

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