In the AuthVaultix Developer Dashboard, User Variables give you full control over storing remote key-value data bound to specific user accounts, locking read-only permissions, and allowing client-side remote updates.
What are User Variables?#
User Variables are remote key-value pairs or JSON payloads linked to individual user accounts.Difference from Global Variables:Global Variables: Provide common configuration data for all users of the application.
User Variables: Are bound to a specific username (for example, user-specific settings, balance credits, or configuration hashes).
Creating a User Variable (createVarModal)#
To create a new user variable, click the Create Variable button:| Parameter Field | Description | Example |
|---|
| Username | The unique name of the target user account. | luffy |
| Variable Name | The identifier key string for the variable. | custom_config |
| Variable Data | The data payload or JSON string to store. | {"theme":"dark"} |
| Read-Only Toggle | Client update permission toggle (True / False). | True (Client cannot modify) |
| Authenticated Access | Fetch permission toggle (True / False). | True (Session required) |
| Expiry Date | Optional expiration date/time for the variable. | 2026-12-31 23:59 |
| Group / Color Label | A category label and color code used for organization. | User Data |
Read-Only vs Remote Client Setvar Permissions#
Read-Only = True: The client application can only read the variable data via getvar and cannot modify it.
Read-Only = False: The client application can remotely update the variable data on the server through setvar using client-side logic.
Variable Operations & Management#
Edit User Variable: Update the username binding, variable name, payload data, read-only status, or expiration timestamp.
Delete Single Variable: Remove an individual user variable entry from the database.
Group Management: Organize user variables into custom group tabs.
Bulk Operations: Move multiple selected user variables from one group to another or delete them in bulk.
Modified at 2026-07-31 17:45:40