>_ NicAPI Dokumentation:

GET: Rechnungen abrufen

/accounting/billings

$res = NicAPI::get("/accounting/billings", [
]);

Gibt alle zugewiesenen Rechnugen zurück.

Rechte: BILLINGS_LIST

GET: Rechnungspositionen abrufen

/accounting/billings/positions

$res = NicAPI::get("/accounting/billings/positions", [
]);

Gibt alle zugewiesenen Rechnungspositionen zurück.

Rechte: BILLINGS_LIST

GET: Einzelne Rechnungsposition abrufen

/accounting/billings/positions/{billing_position}

$res = NicAPI::get("/accounting/billings/positions/{billing_position}", [
]);

Gibt Informationen zu einer einzelnen Rechnungsposition zurück

Rechte: BILLINGS_LIST

GET: Einzelne Rechnung abrufen

/accounting/billings/{billing}

$res = NicAPI::get("/accounting/billings/{billing}", [
]);

Gibt Informationen zu einer einzelnen Rechnung zurück.

Parameters:

Name Benötigt Typ Beschreibung
billing routeparameter
Rechte: BILLINGS_LIST

GET: Rechnung downloaden

/accounting/billings/{billing}/download

$res = NicAPI::get("/accounting/billings/{billing}/download", [
]);

Gibt einen Download der Rechnung zurück

Parameters:

Name Benötigt Typ Beschreibung
billing routeparameter
Rechte: BILLINGS_LIST