user194076
user194076

Reputation: 9017

How to generate API docs

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

Answers (1)

Anil  Panwar
Anil Panwar

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

Related Questions