Netcup client
Client for the netcup DNS API. It's not related to the netcup GmbH.
Prerequisites
- Netcup account with at least one domain
- Api-key and api-password generated via netcup account management tool (CCP)
Getting started
let customer_no = 4711;
let api_key = "api_key";
let api_password = "api_password";
// login
let client = new;
let client = client.login.await?;
// do your things here
let records = client.get_dns_records.await?;
...
// logout
client.logout.await?;