> For the complete documentation index, see [llms.txt](https://developers.socialboards.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.socialboards.com/docs/apis/tickets/reference/objects/user.md).

# User

**Example**

```json
{
    "customIdentifier": null,
    "email": "john@dow.com",
    "id": "fc2481f6-28a4-4ca7-849a-344fd6ab1b20",
    "image": null,
    "isBot": false,
    "name": "John",
    "status": "client"
}
```

**Fields**

| Field            | Type                                                                                          | Comments                                                                                     |
| ---------------- | --------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- |
| customIdentifier | string                                                                                        | Custom identifier value, if the user was identified by a custom identifier. `null` otherwise |
| email            | string                                                                                        | User email address                                                                           |
| id               | Guid                                                                                          | User unique id                                                                               |
| image            | string                                                                                        | User avatar url                                                                              |
| isBot            | boolean                                                                                       | If `true`, it shows that the user is a bot                                                   |
| name             | string                                                                                        | User name                                                                                    |
| status           | [User status](/docs/apis/external-chat-api/reference/enumerations/user-status.md) enumeration | User status in a SocialBoards system                                                         |
