It works in the same way for GET as for POST. Just ensure that
your parameters are aligned with path (if you have also path parameters) :
request.httpMethod = "GET";
request.path = "/yourApi/goesHere/{pathParameter}";
request.parameters = { "pathParameter": "Value1",
"queryParameter": "Value2" }
will call URL: /yourApi/goesHere/Value1?queryParameter=Value2
HTTP 400 means that you sent wrong parameters.
Your service provider may give you more details – check in response content
------------------------------
Sebastian Tylko
------------------------------