AMWD.Net.Api.Netcup.Ccp 0.1.1-1

Netcup CCP API

This project aims to implement the netcup CCP API.

2024-06-21:
Only the DNS API is provided, the reseller API will follow some time soon.

uint customerNumer = 12345;
string apiKey = "12345678901234567890123456789012";

using (var client = new NetcupApiClient(customerNumber, apiKey))
{
	var loginResult = await client.Login("SomeApiPassword");
	var dnsRecordsResult = await client.InfoDnsRecords(loginResult.ResponseData.ApiSessionId);
	await client.Logout(loginResult.ResponseData.ApiSessionId);

	foreach (var record in dnsRecordsResult.ResponseData.Records)
		Console.WriteLine(record);
}

Published under MIT License (see tl;drLegal)

No packages depend on AMWD.Net.Api.Netcup.Ccp.

.NET 6.0

.NET Standard 2.0

Version Downloads Last updated
0.1.1-3 24 15.11.2024
0.1.1-1 55 06.09.2024