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