A KickBox.io API wrapper for .Net 6 written in C#.
- Create a free account at Kickbox.io.
- Sign up for an API Key.
- Add your own Kickbox API key when you instantiate the KickBox object.
I've included a test client application in this project, but here is is an elaboration on how to use each of the methods.
This is available as a NuGet package here: Nuget.org
var kickbox = new KickBoxApi("*** ADD API KEY HERE ***", "https://api.kickbox.com/v2");
var verificationResponse1 = await kickbox.VerifyEmail(new MailAddress("[email protected]"))
.ConfigureAwait(true);
var verificationResponse2 = await kickbox.VerifyBatch(
mailAddresses: new[]
{
new MailAddress("[email protected]"),
new MailAddress("[email protected]")
},
fileName: "test file",
batchVerificationCallback: null)
.ConfigureAwait(false);
var verificationResponse3 = await kickbox.CheckStatus(1234567)
.ConfigureAwait(true);
- 2020/08/25
- Initial commit
- 2023/08/25
- Upgraded to .Net 6
- Added method to check balance.
- Added synchronous methods.