Skip to content

Instantly share code, notes, and snippets.

View rheone's full-sized avatar
💭
pounding on keyboard

Robert H. Engelhardt rheone

💭
pounding on keyboard
View GitHub Profile
@rheone
rheone / PostmanApiController.cs
Last active August 13, 2023 02:31
Generate JSON Postman Collections from a WebApi2 project using WebApi HelpPages
/// <summary>
/// Based on
/// http://blogs.msdn.com/b/yaohuang1/archive/2012/06/15/using-apiexplorer-to-export-api-information-to-postman-a-chrome-extension-for-testing-web-apis.aspx
/// </summary>
[RoutePrefix("api/postman")]
public class PostmanApiController : ApiController
{
/// <summary>
/// Produce [POSTMAN](http://www.getpostman.com) related responses
/// </summary>