I have a web service which returns a template e.g.
Hello {{Name}}, Today is {{Yesterday}}
Then I have another website which returns a json object
{
"Name": "Mr. Been",
"Yesterday": "a nice day",
"otherdata": "unknown"
}
Is it possible to replace the keys from the template with the data from the json object?
The template and web service data is totally dynamic (unknown).