We are using open source BI Helical Insight 6.2.0.952 GA. How can we dynamically pass URL tail/query parameters into a REST API datasource in Helical Insight?
We have a use case where the API requires dynamic filters or query parameters to be appended directly into the API URL during query execution.
Example requirement:
?lat=36.7201600&lng=-4.4203400&date=2019-10-02
We want to know how the requireTail property works in datasource configuration and when the tail part should be provided in the query versus directly in the URL.
SELECT sunrise, sunset
FROM sunrise.?lat=36.7201600&lng=-4.4203400&date=2019-10-02
WHERE sunrise=‘6:12:17 AM’
This feature is useful for dynamically passing API filters and query-specific parameters at runtime to restrict or customize API responses.
Common use cases include date-based filtering, dynamic search APIs, latitude/longitude filters, and user-driven REST API queries.