Hi,
I’m trying to create a simple HTTP GET relay, and I’m having a bit of a challenge.
Here is the flow I want:
- MyApp calls my make.com scenario like this: https://make.com/my-scenario-url?param1=p1¶m2=p2
- My scenario adds another parameter and sends the call to a remote server like this: https://remoteserver.com/remote-url?param1=p1¶m2=p2¶m=p3
- The remote server replies with a JSON payload that I send back as-is to MyApp
I’m stuck at the second item. MyApp sends a variable number of parameters and I’m not exactly sure how to pull them all and send them to the remote server.
As an initial version, I’m testing with a fixed number of parameters and I set my querystring like this:
param1={{1.param1}}¶m2={{1.param2}}¶m3={{2.param3}}
- is my webhook
- is setvariable (which I can probably eliminate, I think and just hard-cod param3)
When I test, I get this error:
BundleValidationError
Validation failed for 1 parameter(s).
- Array of objects expected in parameter ‘qs’.
Any idea what I’m not understanding?
Thanks,
L
P.S. As I send this, I will change the query string to not use a map but just add the key/value pairs (the default mode). I’m thinking that may be the problem.