I am using Camunda 7
I have a json in a variable like:
{
"key": "value"
}
Let’s say I have it in a variable named ‘response’
Now, I want to extract the “value” out of it, so I’ve created another variable responseValue
and in it’s value, I have written spin expression like
${JSON(response).prop(“key”)}
It does extract the value, but instead of extracting it as value
, it extracts it as "value"
(with the quotes)
Is there any other way to extract values? Is there anything I am not doing right?
PS: I need to fix it within the Modeler