Get a global variable.
POST/storage/globalvariables/get
The user can only access a global variable that they created themselves.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
variableNamestringrequired
The name of the variable to get.
Example:
myVariable
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
variableNamestringrequired
The variable name.
Example:
myVariable
variableValuestringrequired
The variable value.
Example:
myValue
{
"variableName": "myVariable",
"variableValue": "myValue"
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}