# Users

## List Users

<mark style="color:blue;">`GET`</mark> `https://api.clients.icaal.co.uk/users`

This endpoint will list all the users for your account.

#### Headers

| Name          | Type   | Description                          |
| ------------- | ------ | ------------------------------------ |
| Authorization | string | Authenticate using the bearer token. |

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

```javascript
{
    "data": [
        {
            "id": 1,
            "first_name": "John",
            "last_name": "Doe",
            "email": "john.doe@icaal.co.uk",
            "status": "active",
            "created_at": "2021-01-01T00:00:00.000000Z",
            "updated_at": "2021-01-01T00:00:00.000000Z",
            "name": "John Doe",
            "pivot": {
                "dealer_id": 1,
                "user_id": 1,
                "job_title": "Administrator",
                "phone": "0800 000 0000",
                "phone_extension": "001",
                "mobile": "07000 000000",
                "role": "administrator",
                "owner": 1,
                "confirmed": 1
            }
        }
    ]
}
```

{% endtab %}
{% endtabs %}
