I working with Java REST API's quiet for a while, mostly wither we use query or path option for passing the parameters. Recently I came across one REST api where they are passing the params like as shown below using :
https://{org_name}.domain.com/api/v1/search/?aql=in:connections timeFrame:"7 Days" protocol:Wi-Fi
Can someone please explain me what exactly these are (aql=in:connections timeFrame:"7 Days" protocol:Wi-Fi
).
Which framework or libraries are used for building this. The reason why I am posting this SO is because I was asked to build a similar implementation, to do I want to understand what exactly this is and how to implement it.