I added the manual page component for my ASP.NET MVC Web API using OData. To make it work, I had to explicitly specify [ApiExplorerSetting (IgnoreAPI = false)].
However, it shows only the GET endpoint only, for example: api / Customers.
But my API also supports GET by ID and some navigation properties, such as: api / Customers (id) and api / Customers (id) / ContactPerson
Is there a way for help pages to automatically generate these endpoints?
Thanks!
source
share