Hi
Sorry if this is a common question, but I can't find any answers on this.
I currently have an existing API and the Swagger UI shows the expected set of Actions by the Controller name (and then each expands to have the appropriate GET, POST etc under them).
I want to expand my API to include a set of functions that I'd like to be separate (from a Swagger UI pov). So instead of
Action1:
POST
GET
PUT
Action2:
I'd like:
Group1:
Action1:
POST
GET
PUT
Action2:
Group2:
Action3:
POST
GET
PUT
Action4:
I hope that makes sense.
Is this possible? Btw, I'm doing this on .NET so technically I'm using the Swashbuckle library, but thought I'd post here.
Thanks
Ken