Are there any automated tools that I can point to our WCF REST API and have it create documentation (preferably with samples)?
Asked
Active
Viewed 493 times
4 Answers
2
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.

Mike Parkhill
- 5,511
- 1
- 28
- 38
2
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/

suing
- 2,808
- 2
- 16
- 18
1
You can also use Rest Assured library. For demo with sample script, refer to http://artoftesting.com/automationTesting/restAPIAutomationGetRequest.html

Kuldeep Rana
- 76
- 8
0
Try Swagger.
Maybe the best open source solution at the moment. It has a lot of tools available for REST API documentation and more.

TheodorosPloumis
- 2,396
- 1
- 17
- 31