How to change the get URL in a query with ION workflow
I have to call a test query to lookup address data
the syntax is /lookup/postcode/number but when I use input parameters I get
postcode/lookup?postcode=%3D6545CA&number=%3D29 which would be normal but the test website does not support that
anyone knows how to change that?
Ron
Best Answer
-
if you want to pass postcode and number as path parameters then postcode and number should be defined as input parameter of type path in your OAS (swagger) documentation. The url would look like /lookup/{postcode}/{number}
In ION workflow you could see something similar as
0
Answers
-
Can you share your screen ?
Do you try to do that in API Flow or Conection Point or API in Workflow ?
0 -
How do you want to pass these parameters? As path or querystring params?
0 -
HI, I wanted to do that in a workflow. I want to pass the parameters as a path
0 -
You can create a input parameter and use in path
1