Loading...
Call this API from C#
1. Include ServiceStack.Client package in your projects.csproj
using ServiceStack;
var client = new JsonServiceClient("https://cip-reporting.chargeitpro.com");
var response = await client.SendAsync(new DuplicateTransactionRequest {
//...
});
// Quickly inpsect response
Inspect.printDump(response);