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

# Create Customer

Registers a new customer record manually in the store database.

### Authorizations

<ParamField header="X-Shop-API-Key" type="string" required>
  Your Secret API Key (`sk_live_...` or `sk_test_...`) generated from the Developer dashboard. Must be kept secret.
</ParamField>

### Path Parameters

<ParamField path="shopId" type="string" required>
  The unique UUID of the shop.
</ParamField>

### Request Body (JSON)

<ParamField body="customerFullName" type="string" required>
  Full name of the customer.
</ParamField>

<ParamField body="phoneNumber" type="string" required>
  Contact phone number.
</ParamField>

<ParamField body="email" type="string">
  Email address.
</ParamField>

<ParamField body="address" type="string">
  Delivery address.
</ParamField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "status": "success",
    "message": "Customer created successfully",
    "data": {
      "id": "c3b07384-d113-4e4e-9828-4e4e98284e4e",
      "customerFullName": "John Doe",
      "phoneNumber": "08012345678",
      "email": "john@example.com"
    }
  }
  ```

  ```json 400 Bad Request theme={null}
  {
    "message": "FORM_VALIDATION_ERROR",
    "code": 400,
    "validationErrors": [
      {
        "path": [
          "customerFullName"
        ],
        "message": "Required"
      }
    ]
  }
  ```
</ResponseExample>
