I am assigning a value to "reasonId" and later using it as a dynamic property in other processor(ExractText).
Now, I want to assign this as an dynamic property so that I can store some API response into this. Means reasonId value and Api response both should change evertytime.
Here I want this [${reasonId}=(.*)] to be like this:-
6099 = Api response (Everytime value of 6099 should change as it is a dynamic variable)
But,
I am getting it like this
${reasonId}=Api response
Why there is no 6099 instead of reasonId. Does it means Dynamic property assignment is not working properly?
or I can use some jolt spec and all for this?
Basically I want reasonId to hold its value 6099 and Api response should be store in 6099 instead of ${reasonId}.