No real code here, but looking for direction. I am using .net core web api. A potential requirement came up to use somewhat of a nested route for the api that is based on the user.
ie: https://blah.com/controller/YourNameHere/variable
Is that even possible?
I am used to this format in a controller:
[ApiController]
[Route("api/[controller]")]
I also believe you can specify static route like /api/[controller]/somethingstatic/id for example.