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

# Step 1: Add a customer

First, register your customer, **ACME Inc.**, in Zenskar.

<Tabs>
  <Tab title="Dashboard">
    1. Log in to your Zenskar dashboard.
    2. Navigate to the **Customers** module.
    3. Click **ADD CUSTOMER**.
    4. Under **Customer information**, enter the following details:
       * **Customer name:** `ACME Inc.`
       * **External ID (optional):** Any ID associated with `ACME Inc.` in your CRM or CIS or similar system.
       * **Email:** `billing@acme.com`
    5. Under **Billing address**, provide sample details:
       * **Address line 1:** `123 Cloud St`
       * **Address line 2:** `Suite 100`
       * **City:** `Cloudville`
       * **State:** `CA`
       * **Zip code:** `90210`
       * **Country:** Select `United States`
       * **Phone number:** `(555) 123-4567`
    6. Ensure "Shipping address is same as billing address" is checked if applicable for your scenario.
    7. Click the "CREATE" button at the bottom right of the form.
    8. Make a note of the `Customer ID` assigned by Zenskar (e.g., a UUID like `cust_7d2f9b8c-1e2a-4c3d-9f0e-1a2b3c4d5e6f`). All IDs generated by Zenskar are UUIDs.
  </Tab>

  <Tab title="API (alternative for automation)">
    You can also use the Zenskar API to create a customer. The endpoint for creating a customer is `POST https://api.zenskar.com/customers`.

    ```bash theme={null}
    curl -X POST 'https://api.zenskar.com/customers' \
    -H 'Content-Type: application/json' \
    -H 'x-api-key: <your-api-key>' \
    -d '{
        "address": {
            "line1": "123 Cloud St",
            "line3": "Suite 100",
            "city": "Cloudville",
            "state": "CA",
            "zipCode": "90210",
            "country": "United States",
            "validation_status": "VALID" # Or "INVALID", "PENDING"
        },
        "communications_enabled": true,
        "auto_charge_enabled": true,
        "external_id": "acme-inc-ext-id",
        "customer_name": "ACME Inc."
    }'
    ```

    *(For more details, refer to the[Zenskar Customer API documentation](https://docs.zenskar.com/reference/create-customer). The response will include a Zenskar-generated customer ID, which is a UUID. All IDs generated by Zenskar are UUIDs.)*
  </Tab>
</Tabs>
