> ## Documentation Index
> Fetch the complete documentation index at: https://docs.corebanq.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create customer



## OpenAPI

````yaml post /v1/customers
openapi: 3.0.0
info:
  title: Corebanq - Customers API
  description: API endpoints for customer management
  version: 1.0.0
servers: []
security: []
paths:
  /v1/customers:
    post:
      summary: Create customer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCustomerInput'
      responses:
        '201':
          description: Customer created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerResponse'
components:
  schemas:
    CreateCustomerInput:
      type: object
      required:
        - type
        - first_name
        - last_name
        - email
      properties:
        type:
          type: string
          enum:
            - individual
            - business
        first_name:
          type: string
        last_name:
          type: string
        email:
          type: string
          format: email
        phone:
          type: string
        date_of_birth:
          type: string
          format: date
        nationality:
          type: string
        address:
          $ref: '#/components/schemas/Address'
        metadata:
          type: object
    CustomerResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
        type:
          type: string
        first_name:
          type: string
        last_name:
          type: string
        email:
          type: string
        phone:
          type: string
        date_of_birth:
          type: string
        nationality:
          type: string
        address:
          $ref: '#/components/schemas/Address'
        kyc_status:
          type: string
        verification_level:
          type: string
        metadata:
          type: object
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    Address:
      type: object
      properties:
        street:
          type: string
        city:
          type: string
        postal_code:
          type: string
        country:
          type: string

````