Hi again
I started working with Integray, but I have one problem with connector configuration:
How to use query params for endpoint like “?q=mobile”? where should I write them?
Hi,
If you want to provide fixed query param you do it in “Endpoint” field:
- /api/some_endpooint?param=value
In case you want to pass data from input schema:
- /api/some_endpoiont?param=${input.ColumnName}
Sometimes you need to provide dynamic data in endpoint URL and you can do it as:
- /api/${input.ColumnName}/data?param=${input.ColumnName1}
Tomas
1 Like
I didn’t think to use variables in the url path too, thanks!
/api/${input.ColumnName}/data?param=${input.ColumnName1}
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.