Good afternoon.
I am currently working with an API of the GET type in which we must use the following url for the get method as standard:
/users/{user_id}/customers
The question here is that I don't know how I can get this value, if I can only use RequestMapping and if so, my user_id input parameter is a combination of the Query Parameters type like the following example:
/users/user_id?id=1&value=12345678/customers
That is, can I retrieve the query parameters from the user_id field as indicated in the example url or can this only apply the query parameters to the end of the URL?