Hello,
I have backend API having URL like below , which I wanted to host in the FGW connected mode.
https://host:port/<<basepath>>/<<dynamicpath>>?query1_key=<<query1_value>>&query2_key=<<query2_value>>
samples:
https://some_example_dns.com/api/users?a_key=a_value&b_key=b_value
https://some_example_dns.com/api/employees?a_key=a_value&b_key=b_value
Mule FGW url should be
https://some_mule_fgw_dns.com/mulebasepath/api/users?a_key=a_value&b_key=b_value
https://some_mule_fgw_dns.com/mulebasepath/api/employees?a_key=a_value&b_key=b_value
How to achieve this in Flex GW? Do we need to specific configuration or it will automatically detect the query params passed?
Thanks
You don't have to configure anything related to query params, just create an HTTP API with a base URL like https://some_example_dns.com/api
Apply flex gateway in the above HTTP API endpoint, it should work.