Solved
Set json key with a variable
In standard javascript one would simply do this..
let key = "somthing"
let jsonObject = {[key]: "value"}
But Thingworx doesn't allow this. How can I set a key using a variable in thingworx?
In standard javascript one would simply do this..
let key = "somthing"
let jsonObject = {[key]: "value"}
But Thingworx doesn't allow this. How can I set a key using a variable in thingworx?
let jsonObject= {}
userInput[key] = "value"
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.