Reputation: 2785
Are there any automated tools that I can point to our WCF REST API and have it create documentation (preferably with samples)?
Upvotes: 0
Views: 505
Reputation: 2456
Try Swagger.
Maybe the best open source solution at the moment. It has a lot of tools available for REST API documentation and more.
Upvotes: 0
Reputation: 76
You can also use Rest Assured library. For demo with sample script, refer to http://artoftesting.com/automationTesting/restAPIAutomationGetRequest.html
Upvotes: 1
Reputation: 2878
Are you using Web Api? If so the following link could help
Here is something on general documentation. http://blog.programmableweb.com/2010/08/12/web-api-documentation-best-practices/
Upvotes: 2
Reputation: 5551
Take a look at the Sandcastle project. We're using it to produce MSDN or JavaDoc style Html pages based on the ///<summary>
tags on our public C# members.
http://sandcastle.codeplex.com/
Upvotes: 2