Hi!
I have a dynamic URL for a REST service in this form:
[url=http://my_url/my_category/{my_id}/my_articles]http://my_url/my_category/{my_id}/my_...[/url].
I know how to pass "my_id" parameter through the appery.io interface, but I need to execute that service a number of times inside a loop.
I tried executing it using the following syntax:
"service.execute({ data : {"my_id" : number} });",
but looking at the console log the link gets composed like so:
"[url=http://my_url/my_category//my_articles?my_id=number]http://my_url/my_category//my_article...[/url].".
What's the correct syntax to accomplish it?
Thanks in advance
Michele