Hi Guys,
For the API I am calling, I need to include a Body Request to to do a find in the service. If I hard code the value, it works fine: e.g.
{
"query":[
{"Email": "==email@domain.com"}]
}
But if I try to use the "email" parameter I am passing into the call I keep getting errors ("Unexpected token P in JSON at position 33") :
{
"query":[
{"Email": PARAMS.QUERY.email}]
}
I am sure it is my syntax, but I can't figure it out.
PLLEEAASSE HELP!