> For the complete documentation index, see [llms.txt](https://api.stonestepag.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api.stonestepag.com/customer-registration-api.md).

# Customer Registration API

## CustomerRegister

<mark style="color:green;">`POST`</mark> `https://{baseurl}/customers/customer/api/register`

This endpoint allows you to register customer.

#### Query Parameters

| Name       | Type    | Description            |
| ---------- | ------- | ---------------------- |
| name       | string  | Customer Name          |
| mobile     | string  | Customer Mobile Number |
| id\_number | string  | Customer any Id Number |
| email      | string  | Customer Email address |
| dob        | boolean | Customer Date of Birth |

#### Headers

| Name                   | Type   | Description                           |
| ---------------------- | ------ | ------------------------------------- |
| EIGER-SESSION-ID       | string | Web Service Token API Generated Value |
| EIGER-TOKEN            | string | Web Service Token API Generated Value |
| EIGER-API-REQUEST-TYPE | string | REST                                  |
| Accept                 | string | application/json                      |
| Content-Type           | string | application/json                      |

{% tabs %}
{% tab title="200 Customer successfully registered." %}

```
{
"status": "SUCCESS",
"errorcode": "0000",
"message": "Customer Registered Successfully",
"errors": null
}
```

{% endtab %}

{% tab title="404 Could not find a matching this query." %}

```
{    "message": "Failed"}
```

{% endtab %}
{% endtabs %}
