List all variables.
POST/storage/globalvariables/list
Lists all variables that the user has created before and not yet deleted.
Request
- application/json
Bodyrequired
object
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
- Array [
- ]
variables object[]required
The list of variables for this user.
variableNamestringrequired
The name of the variable.
Example:
myVariable
variableValuestringrequired
The value of the variable.
Example:
myValue
{
"variables": [
{
"variableName": "myVariable",
"variableValue": "myValue"
}
]
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}