Hello!
I'm trying to configure an API calls to an endpoint in GET:
domainname/php_api/api-clients.php?list_in_name=PHONE|COUNTRY&list_in_value=123456789|FR
the problem is when I try to test the call I got the message:
"Failed due to malformed requestUrlTemplate. Illegal character in query at index 73: https://domainname/php_api/api-clients.php?list_in_name=PHONE|COUNTRY&list_in_value=123456789|FR"
seems is the "|" the issue.
I have already tried with some of Velocity macros also the one below:
list_in_name=$salesforce.escReserved(${input.list_in_name})&list_in_value=$salesforce.escReserved(${input.list_in_value})
but I got the same issue.
any idea?
Thanks!
davide