Postman is an API platform for building and using APIs. Postman simplifies each step of the API lifecycle and streamlines collaboration so you can create better APIs—faster.
This library helps you to read a Postman Collection v2.1 json file in C#.
Install-Package PostmanCollectionReader
dotnet add package PostmanCollectionReader
using PostmanCollectionReader;
var postmanCollection = PostmanCollection.FromJson(jsonString);
var environment = PostmanCollection.EnvironmentFromJson(jsonString);Based on Postman Collection Format v2.1.0 Draft 07 schema and QuickType.
