Service Integration - How can I add GET parameters to my REST API service call?
I'm using (consuming) a web service of a third-party platform, so I've created (as manual says) a service integration model with one service method element, which points to the web service I want to. Now, the standard used in this platform is using GET parameters in the call, this is the description of it:
- userid: (Numeric - integer) The user's identifier.
- catalogid: (Numeric - integer) The catalog's identifier
The suffix of the URL to use has this pattern:
<web service endpoint>/user/<userid>/catalog/<catalogid>
How can I accomplish this in the service call method?