Reputation: 9017
How can I generate docs in a nice format such as:
https://dev.fitbit.com/docs/body/#log-body-fat
https://jawbone.com/up/developer/endpoints/moves
Is there a service that can help with this task? I'm using asp.net MVC
and WebApi
Upvotes: 3
Views: 51
Reputation: 2622
Yes you can by running this command from package manager console.
Microsoft.AspNet.WebApi.HelpPage
For more detail see:
http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/creating-api-help-pages
Rest UI part you can improve.
Upvotes: 1