How to setup a query parameter within a Remote Web service?

Trying to setup up access to a remote web service for an SMS API.
the format of the api is as shown below:

http://testapi.thissmsservice.com/apis/text/index.php?username=testclient&password=password&mobiles=460974270891&message=TesingService&sender=Tester&type=TEXT

What would be the prescribed steps to set up the above API within the remote web service?
How does one specify the query parameters?

Apologies if this seems a fairly simple question to ask in this forum. Any assistance would be appreciated.

Thanks

1 Like

When an error like the one below is received - what does it mean?

{
“error”: {
“context”: null,
“message”: “Bad request. No token or api key provided.”,
“code”: 400
}
}

1 Like

@chinedukoggu
the error is because your request without this Api Key in the header or query.
this link is a tutorial to connect a remote web service:
https://www.dreamfactory.com/resources/video/how-connect-dreamfactory-remote-web-service

DOC: https://wiki.dreamfactory.com/DreamFactory/Tutorials

2 Likes

After stumbling around with documentation and a lot of false starts - I finally managed to understand the process.
Thank you a great deal Paulo for taking time to get across - very much appreciated.