Hi,
I am using the below functionality to fetch values from API response to Output body.
{
"access_token": {"IonApiRef": "$.access_token"}
}
The above gives me result, say
{
"access_token": "abc.123"
}
I need to append a string (say "Token") to the value which will be fetched by the Xpath (say "abc.123"), so that I get the result,
{
"access_token": "Token abc.123"
}