Is a FormEncodedRequest a possibility. Something like ...
LET req = com.HTTPRequest.Create("http://10.1.6.42/opencrx-rest-OSCRM/org.opencrx.kernel.account1/provider/CRX/segment/ITA/account")
CALL req.setAuthentication(...)
WHILE TRUE
-- Replace admin-ITA with variable populated differently for each request
CALL req.doFormEncodedRequest("position=0&size=1&queryType=org:opencrx:kernel:account1:Contact&query=thereExistsFullName().startsWith(\"admin-ITA\")", FALSE))
...
END WHILE
Frank: with a typical RESTful Web Service, wouldn't the base URL remain constant, and the query parameters after the ? change with each call. Is it necessary to create a new HTTPRequest object for each call?
Reuben