# Dashboard user access level

{% hint style="warning" %}
Currently the UXWizz user access levels are not that well structured. \
You normally want to use either level 5 (admin) or level 0 (read-only).\
\
UI is being implemented to show this information inside the dashboard.
{% endhint %}

You can see the up-to-date permissions/access levels inside the **server/permissions.php** file.\
Those were the permissions as of version 6.5.0:

```php
// Permissions, 5 is the highest level

// Root
'UPDATE_PLATFORM' => 5,
'SET_LICENSE_KEY' => 5,
'CHANGE_DASHBOARD_SETTINGS' => 5,
'CHECK_LICENSE_KEY' => 5,
'SET_GPT_API_KEY' => 5,

// Administrator
'ADD_USER' => 4,
'DELETE_USER' => 4,
'SET_USER_DATA' => 4,
'SET_USER_LEVEL' => 4,
'SET_USER_MAX_DOMAINS' => 4,
'CHANGE_DOMAIN_ACCESS' => 4,
'GET_USERS_LIST' => 4,
'VIEW_DB_STATS' => 4,
'SET_OWN_USER_DATA' => 4,
'UPDATE_AB_TESTS' => 4,
'CHANGE_SETTINGS' => 4,
'CHANGE_GPT_MODEL' => 4,

// Analyst
'REMOVE_TAG' => 3,
'ADD_TAG' => 3,
'SET_RECORD_LIMIT' => 3 ,
'DELETE_RECORDED_CLIENT' => 3,
'CHANGE_OWN_DOMAIN_ACCESS' => 3,
'CHAT_WITH_AI' => 3,

'SHARE_RECORDING' => 1,
```

A user with **level 2** will have **access to all actions that require level 2 or less (2, 1, 0).**


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.uxwizz.com/guides/dashboard-user-access-level.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
