netcup-node
Version:
A node wrapper for the Netcup CCP API (https://www.netcup-wiki.de/wiki/CCP_API)
19 lines (18 loc) • 458 B
TypeScript
export interface NetcupAuth {
/**
* Your Netcup API key generated from the [customer control panel](https://www.customercontrolpanel.de/daten_aendern.php?sprung=api).
*/
apiKey: string;
/**
* The associated password for the API key.
*/
apiPassword: string;
/**
* Your customer number.
*/
customerNumber: string;
/**
* The API session ID retrieved by a login.
*/
apiSessionId: string;
}