# Get Single

## Get Single User

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

Retrieve information for a single user. A `userId` must be passed in to the endpoint as a path parameter.&#x20;

#### Path Parameters

| Name   | Type    | Description    |
| ------ | ------- | -------------- |
| userId | integer | ID of the user |

#### Query Parameters

| Name      | Type   | Description                                     |
| --------- | ------ | ----------------------------------------------- |
| select    | array  | Specify which fields you'd like in the response |
| relations | string | Specify the relations with other entities       |

#### Headers

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

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

```
{
  "data": {
    "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
      }
    },
    "logo": null,
    "organization": "ABC Organization",
    "sso": false
  }
}
```

{% endtab %}
{% endtabs %}
