> For the complete documentation index, see [llms.txt](https://docs.signius.eu/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.signius.eu/api/ra/create-user.md).

# Create User

## Create a new user

With this request, you are able to create new user.

<mark style="color:green;">`POST`</mark> <https://professional.signius.eu:8300/api/ra/users>

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |

**Body**

| Name          | Type   | Description                        |
| ------------- | ------ | ---------------------------------- |
| `email`       | string | User email                         |
| `phoneNumber` | string | Phone number                       |
| `authToken`   | string | User password                      |
| firstName     | string | User's firstname                   |
| lastName      | string | User's lastname                    |
| citizenship   | string | Two uppercase letter as coutryname |
| language      | string | Two lowercase letters              |
| acceptTerms   | string |                                    |

**Response**

{% tabs %}
{% tab title="200: OK" %}

{% endtab %}
{% endtabs %}

For Example:

```json
{
  "email": "{{ra_user}}",
  "phoneNumber": "+48123456789",
  "authToken": "Pa$$word",
   "firstName": "John",
  "lastName": "Doe",
  "citizenship": "PL",
  "language": "pl",
  "acceptTerms": true
}
```
