Update a global variable.
POST/storage/globalvariables/update
Changes the value of the given global variable to the new value.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
variableNamestringrequired
The name of the variable to update.
Example:
myVariable
variableValuestringrequired
The new value of the variable.
Example:
myValue
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
variableNamestringrequired
The variable name.
Example:
myVariable
variableValuestringrequired
The new value of the variable.
Example:
myValue
{
"variableName": "myVariable",
"variableValue": "myValue"
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}