I want to make it dynamic for API calls within my app.
The custom API call is a ‘Get’ call which accepts URL parameters and have a million possible key/value combinations which is all dynamic
Kind of similar like selecting filters on an ecommerce store.
Example ecommerce.com/search is a page and i want to search for clothing category for men, the URL becomes ecommerce.com/search?clothing=men.
Then i apply another filter for color blue, hence the URL becomes ecommerce.com/search?clothing=men&color=blue
These filters goto the URL so it’s copy/pastable and then from URL to API calls.
Apologies if I wasn’t able to explain this clearly, but the use case is: We need to be able to make ‘key’ parameter in URL dynamic. Any solutions?