Hi,
The following GET request works fine:
<Request verb="GET" url="/ext/api/v1/whs/services/200698/subscriptions">
But I want to replace the id "200698" in the string by a parameter which is set in other place in my driver. I tried something like:
<Request verb="GET" url="/ext/api/v1/whs/services/" pid="58" "/subscriptions"> but it is not working. So is there a way?
Thank you,
Hi,
You are going to need to define a new parameter (e.g. 12345) that contains the entire url and then use pid="12345" and remove the url attribute in the Request definition.
With a QAction that triggers on 200698, that value of that parameter can be read out and the url value can be created to fill in parameter 12345 that will be used in the request.
Regards,
Hi Laurens,
Thank you for the quick answer, this what I was thinking …