Skip to main content
Variables are key-value pairs delivered to SDK clients during authentication. App variables go to every user; license variables go to a specific license holder. Limits: Max 50 keys, 4 KB total JSON size, flat values only (string, number, boolean). Key max length: 64 characters.

Get app variables

Retrieve all variables for an application.

Path parameters

Example

Response (200)

Returns an empty object {} if no variables are set.

Set app variables

Replace all variables for an application. This is a full replacement; omitted keys are removed.

Path parameters

Request body

A JSON object of key-value pairs. Values must be strings, numbers, or booleans.

Response (200)

Errors

Clearing all variables

Send an empty object to remove all variables:

Get license variables

Retrieve all variables for a specific license.

Path parameters

Example

Response (200)


Set license variables

Replace all variables for a specific license. Full replacement; omitted keys are removed.

Path parameters

Request body

A JSON object of key-value pairs.

Response (200)

Errors


Validation rules