# List

## List

<mark style="color:blue;">`GET`</mark> `https://{{account_id}}.acquire.io/api/v1/account/user`

List all available users.

#### Query Parameters

| Name      | Type   | Description                                     |
| --------- | ------ | ----------------------------------------------- |
| select    | array  | Specify which fields you'd like in the response |
| where     | object | Specify a condition to limit the response       |
| relations | string | Specify relations with other entities           |
| order     | object | Specify descending or ascending order           |

#### Headers

| Name          | Type   | Description         |
| ------------- | ------ | ------------------- |
| Authorization | string | Bearer {{API\_KEY}} |

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

```
{
  "data": {
    "count": 3,
    "data": [
      {
        "firstName": "David Guetta",
        "lastName": "",
        "id": 1,
        "type": "user",
        "status": "active",
        "lastLoginId": null,
        "parentId": null,
        "ownerId": null,
        "name": "David Guetta",
        "email": "user@example.com",
        "phone": "+91-1234567890",
        "photo": "",
        "inviteToken": null,
        "language": null,
        "clientId": null,
        "clientAppId": null,
        "clientAuthorizer": null,
        "clientPermissions": null,
        "stateId": null,
        "countryId": null,
        "dateCreated": null,
        "meta": {
          "onboard_setup": {
            "install": false,
            "welcome": false,
            "setupMail": false,
            "setupVoip": false,
            "setupAppStore": false,
            "setupSocialApp": false
          },
          "productUpdate": {
            "data": [],
            "lastSeenArticleLength": 0
          }
        }
      },
      {
        "firstName": "hello user1",
        "lastName": "",
        "id": 19,
        "type": "user",
        "status": "active",
        "lastLoginId": null,
        "parentId": null,
        "ownerId": null,
        "name": "hello user1",
        "email": "hello@acquire.io",
        "phone": null,
        "photo": null,
        "inviteToken": null,
        "language": null,
        "clientId": null,
        "clientAppId": null,
        "clientAuthorizer": null,
        "clientPermissions": null,
        "stateId": null,
        "countryId": null,
        "dateCreated": "2021-02-03T16:59:45.000Z",
        "meta": {
          "onboard_setup": {
            "install": false,
            "welcome": false,
            "setupMail": false,
            "setupVoip": false,
            "setupAppStore": false,
            "setupSocialApp": false
          }
        }
      },
      {
        "firstName": "set2",
        "lastName": "",
        "id": 20,
        "type": "user",
        "status": "active",
        "lastLoginId": null,
        "parentId": null,
        "ownerId": null,
        "name": "set2",
        "email": "set2@acquire.io",
        "phone": null,
        "photo": null,
        "inviteToken": null,
        "language": null,
        "clientId": null,
        "clientAppId": null,
        "clientAuthorizer": null,
        "clientPermissions": null,
        "stateId": null,
        "countryId": null,
        "dateCreated": "2021-02-03T17:00:26.000Z",
        "meta": {
          "onboard_setup": {
            "install": false,
            "welcome": false,
            "setupMail": false,
            "setupVoip": false,
            "setupAppStore": false,
            "setupSocialApp": false
          }
        }
      }
    ]
  }
}
```

{% endtab %}
{% endtabs %}
