Could we create the same GET URI but with different query parameters?
For example, I have two REST GET URIs:
/questions/ask/?type=rest /questions/ask
You cannot overload REST requests.
In your business layer you would have to check which of the two variables are set and then you will have to do the required processing.