eFakturierung API
Dank API lässt sich eFAKTURIERUNG leicht mit anderen Anwendungen in Verbindung setzen. In Beispielen geben wir Aufrufe mithilfe des Werkzeuges CURL - Sie können sie einfach auf jede Programmierungssprache wechseln.
Bitte kontaktiere uns, wenn Sie eine zusätzliche API-Funktion brauchen. Wir bemühen uns sie schnell einzufügen.
Alle Beispiele funktionieren mit JSON oder XML (man muss nur die Erweiterung xml auf json wechseln). Alle Aufrufe API funktionieren mit SSL, deswegen ist es empfehlenswert in einer Produktionsversion HTTP auf HTTPS zu ändern.
- Rechnungen
- Produkte / Dienstleistungen
- Kunden
- Lagerdokumente
- Zahlungen
- Kategorien
- Lager
- Integrationen
- Abteilungen
ACHTUNG: Die vollständige Dokumentation befindet sich auf GitHub
https://github.com/InvoiceOcean/api
ACHTUNG: Die vollständige Dokumentation befindet sich auf GitHub https://github.com/InvoiceOcean/api
API Token
API-Token muss man von Applikationseinstellungen herunterladen (Einstellungen -> Kontoeinstellungen -> Integration -> API Autorisierungscode)Rechnungen
Alle Rechnungen vom bestimmten Zeitraum herunterladen
Rechnungen vom aktuellen Monat herunterladen:
JSON
Code CURL herunterladen
https://YOUR_DOMAIN.efakturierung.de/invoices.json?period=this_month&page=1&per_page=25&api_token=API_TOKEN
XML
Code CURL herunterladen
https://YOUR_DOMAIN.efakturierung.de/invoices.xml?period=this_month&page=1&per_page=25&api_token=API_TOKEN
man kann dieselben Parameter übermitteln wie in der App übermittelt werden (auf der Seite der Rechnungsliste)
Gewählte Rechnung nach ID herunterladen
JSON
Code CURL herunterladen
https://YOUR_DOMAIN.efakturierung.de/invoices/100.json?api_token=API_TOKEN
XML
Code CURL herunterladen
https://YOUR_DOMAIN.efakturierung.de/invoices/100.xml?api_token=API_TOKEN
Herunterladen von Rechnung als PDF
PDF
Code CURL herunterladen
https://YOUR_DOMAIN.efakturierung.de/invoices/100.pdf?api_token=API_TOKEN
Sendung von Rechnung an einen Kunden per E-Mail
JSON curl -X POST "https://YOUR_DOMAIN.efakturierung.de/invoices/100/send_by_email.json?api_token=API_TOKEN"
XML curl -X POST "https://YOUR_DOMAIN.efakturierung.de/invoices/100/send_by_email.xml?api_token=API_TOKEN"
Herunterladen von Rechnung nach Bestellung-ID
JSON curl "https://YOUR_DOMAIN.efakturierung.de/invoices.json?oid=nr_zam&api_token=API_TOKEN"
XML curl "https://YOUR_DOMAIN.efakturierung.de/invoices.xml?oid=nr_zam&api_token=API_TOKEN"
Herunterladen von Rechnungen, auf deren Grundlage das Dokuments mit der angegebenen ID erstellt wurde
JSON curl "https://YOUR_DOMAIN.efakturierung.de/invoices.json?invoice_id=id&api_token=API_TOKEN"
XML curl "https://YOUR_DOMAIN.efakturierung.de/invoices.xml?invoice_id=id&api_token=API_TOKEN"
Herunterladen von Rechnungen, die auf der Grundlage eines Dokuments mit der angegebenen ID erstellt wurden
JSON curl "https://YOUR_DOMAIN.efakturierung.de/invoices.json?from_invoice_id=id&api_token=API_TOKEN"
XML curl "https://YOUR_DOMAIN.efakturierung.de/invoices.xml?from_invoice_id=id&api_token=API_TOKEN"
Neue Rechnung hinzufügen
JSON (empfohlen)JSON (empfohlen)
curl https://YOUR_DOMAIN.efakturierung.de/invoices.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"api_token": "API_TOKEN",
"invoice": {
"kind":"vat",
"number": null,
"sell_date": "2024-11-21",
"issue_date": "2024-11-21",
"payment_to": "2024-11-28",
"seller_name": "Seller SA",
"seller_tax_no": "6272616681",
"buyer_name": "Client1 SA",
"buyer_tax_no": "6272616681",
"positions":[
{"name":"Produkt A1", "tax":23, "total_price_gross":10.23, "quantity":1},
{"name":"Produkt A2", "tax":0, "total_price_gross":50, "quantity":2}
]
}}'
Code CURL herunterladenMit Daten von Standard-Abteilung :
curl https://YOUR_DOMAIN.efakturierung.de/invoices.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"api_token": "API_TOKEN",
"invoice": {
"kind":"vat",
"number": null,
"sell_date": "2024-11-21",
"issue_date": "2024-11-21",
"payment_to": "2024-11-28",
"buyer_name": "Client1 SA",
"buyer_tax_no": "6272616681",
"positions":[
{"name":"Produkt A1", "tax":23, "total_price_gross":10.23, "quantity":1},
{"name":"Produkt A2", "tax":0, "total_price_gross":50, "quantity":2}
]
}}'
Code CURL herunterladenXML
curl https://YOUR_DOMAIN.efakturierung.de/invoices.xml \
-u 'login:YOUR_PASSWORD' \
-H 'Accept: application/xml' \
-H 'Content-Type: application/xml' \
-d '<invoice>
<kind>vat</kind>
<sell_date>2024-11-21</sell_date>
<issue_date>2024-11-21</issue_date>
<payment_to>2024-11-28</payment_to>
<seller_name>Seller SA</seller_name>
<seller_tax_no>6272616681</seller_tax_no>
<buyer_name>Client1 SA</buyer_name>
<buyer_tax_no>6272616681</buyer_tax_no>
<positions>
<position>
<name>Produkt X1</name>
<tax>23</tax>
<total_price_gross>20</total_price_gross>
<quantity>1</quantity>
</position>
<position>
<name>Produkt X2</name>
<tax>0</tax>
<total_price_gross>10</total_price_gross>
<quantity>3</quantity>
</position>
</positions>
</invoice>'
Code CURL herunterladenBeispiel in Ruby
endpoint = 'https://YOUR_DOMAIN.efakturierung.de/invoices.json'
uri = URI.parse(endpoint)
json_params = {
"api_token" => "API_TOKEN",
"invoice" => {
"kind" =>"vat",
"number" => nil,
"sell_date" => "2024-11-21",
"issue_date" => "2024-11-21",
"payment_to" => "2024-11-28",
"buyer_name" => "Client1 SA",
"buyer_tax_no" => "6272616681",
"positions" =>[
{"name" =>"Produkt A1", "tax" =>23, "total_price_gross" =>10.23, "quantity" =>1},
{"name" =>"Produkt A2", "tax" =>0, "total_price_gross" =>50, "quantity" =>2}
]
}}
request = Net::HTTP::Post.new(uri.path)
request.body = JSON.generate(json_params)
request["Content-Type"] = "application/json"
http = Net::HTTP.new(uri.host, uri.port)
response = http.start {|h| h.request(request)}
if response.code == '201'
ret = JSON.parse(response.body)
else
ret = response.body
end
puts ret.to_json
Javascript / Ajax jQuery
json_params = {
"api_token": "API_TOKEN",
"invoice": {
"kind":"vat",
"number": null,
"sell_date": "2024-11-21",
"issue_date": "2024-11-21",
"payment_to": "2024-11-28",
"buyer_name": "Client1 SA",
"buyer_tax_no": "6272616681",
"positions":[
{"name":"Produkt A1", "tax":23, "total_price_gross":10.23, "quantity":1},
{"name":"Produkt A2", "tax":0, "total_price_gross":50, "quantity":2}
]
}}
//alert(JSON.stringify(json_params))
endpoint = 'https://YOUR_DOMAIN.efakturierung.de/invoices.json'
$.ajax({
type: "POST",
url: endpoint,
data: json_params,
dataType: 'json',
success: function(data) { alert('invoice created! ' + data['number'])},
});
Rechnung mit dem prozentualen Rabatt hinzufügen
Hinweis: Bevor eine Rechnung erstellt wird, kontrolliere in Kontoeinstellungen ob das Feld "wie den Rabatt rechnen" auf "in Prozent vom Einzelpreis im Netto" eingestellt istcurl https://YOUR_DOMAIN.efakturierung.de/invoices.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"api_token": "API_TOKEN",
"invoice": {
"kind":"vat",
"number": null,
"sell_date": "2024-11-21",
"issue_date": "2024-11-21",
"payment_to": "2024-11-28",
"seller_name": "Seller SA",
"seller_tax_no": "6272616681",
"buyer_name": "Client1 SA",
"buyer_tax_no": "6272616681",
"show_discount": true,
"discount_kind": "percent_unit",
"positions":[
{"name":"Produkt A1", "tax":23, "total_price_gross":10.23, "quantity":1, "discount_percent": 50},
{"name":"Produkt A2", "tax":0, "total_price_gross":50, "quantity":2, "discount_percent": 10}
]
}}'
Code CURL herunterladenRechnung mit Betragrabatt hinzufügen
HINWEIS: Vor Erstellung sollte man überprüfen, ob in Kontoeinstellungen das Feld "Wie den Rabatt berechnen" quotengerecht eingestellt wirdcurl https://YOUR_DOMAIN.efakturierung.de/invoices.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"api_token": "API_TOKEN",
"invoice": {
"kind":"vat",
"number": null,
"sell_date": "2024-11-21",
"issue_date": "2024-11-21",
"payment_to": "2024-11-28",
"seller_name": "Seller SA",
"seller_tax_no": "6272616681",
"buyer_name": "Client1 SA",
"buyer_tax_no": "6272616681",
"show_discount": true,
"discount_kind": "amount",
"positions":[
{"name":"Produkt A1", "tax":23, "total_price_gross":10.23, "quantity":1, "discount": 5},
{"name":"Produkt A2", "tax":0, "total_price_gross":50, "quantity":2, "discount": 25}
]
}}'
Code CURL herunterladenRechnung zum existierenden Kunden und Produkt hinzufügen
Wenn Sie ID eines Kunden (client_id), eines Verkäufers (department_id) oder eines Produktes haben, dann brauchen Sie keine weiteren Daten mitzuteilen. Die Rechnung wird mit dem aktuellen Datum und mit 5 Tagen Zahlungsfrist erstellt.curl https://YOUR_DOMAIN.efakturierung.de/invoices.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{"api_token": "API_TOKEN",
"invoice": {
"payment_to_kind": 5,
"department_id": 222,
"client_id": 111,
"positions":[
{"product_id": 333, "quantity":2}
]
}}'
Code CURL herunterladenRechnung-Update
curl https://YOUR_DOMAIN.efakturierung.de/invoices/444.json \
-X PUT \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{"api_token": "API_TOKEN",
"invoice": {
"buyer_name": "New buyer name SA"
}}'
Code CURL herunterladenDie Rechnung löschen
JSON curl -X DELETE "https://YOUR_DOMAIN.efakturierung.de/invoices/100.json?api_token=API_TOKEN"
XML curl -X DELETE "https://YOUR_DOMAIN.efakturierung.de/invoices/100.xml?api_token=API_TOKEN"
Lagerdokumente
Alle Lagerdokumente
JSONcurl "https://YOUR_DOMAIN.efakturierung.de/warehouse_documents.json?page=1&per_page=25&api_token=API_TOKEN"
man kann dieselben Parameter übermitteln wie in der App übermittelt werden (auf der Seite der Rechnungsliste)
Ausgewähltes Dokument gemäß ID herunterladen
JSON curl "https://YOUR_DOMAIN.efakturierung.de/warehouse_documents/555.json?api_token=API_TOKEN"
Hinzufügen eines PZ (Betriebsannahme)-Lagerdokumentes
JSON
curl https://YOUR_DOMAIN.efakturierung.de/warehouse_documents.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"api_token": "API_TOKEN",
"warehouse_document": {
"kind":"pz",
"number": null,
"warehouse_id": "1",
"issue_date": "2024-11-21",
"department_name": "Department1 SA",
"client_name": "Client1 SA",
"warehouse_actions":[
{"product_name":"Produkt A1", "purchase_tax":23, "purchase_price_net":10.23, "quantity":1},
{"product_name":"Produkt A2", "purchase_tax":0, "purchase_price_net":50, "quantity":2}
]
}}'
Code CURL herunterladenHinzufügen eines WZ (Betriebsausgabe)-Lagerdokumentes
JSON
curl https://YOUR_DOMAIN.efakturierung.de/warehouse_documents.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"api_token": "API_TOKEN",
"warehouse_document": {
"kind":"wz",
"number": null,
"warehouse_id": "1",
"issue_date": "2024-11-21",
"department_name": "Department1 SA",
"client_name": "Client1 SA",
"warehouse_actions":[
{"product_id":"333", "tax":23, "price_net":10.23, "quantity":1},
{"product_id":"333", "tax":0, "price_net":50, "quantity":2}
]
}}'
Code CURL herunterladenHinzufügen eines PZ-Lagerdokuments für einen vorhandenen Kunden, Abteilung und Produkt
Den Schlüssel department_id (und department_name) weglassen, um eine voreingestellte Abteilung einzustellenJSON
curl https://YOUR_DOMAIN.efakturierung.de/warehouse_documents.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"api_token": "API_TOKEN",
"warehouse_document": {
"kind":"pz",
"number": null,
"warehouse_id": "1",
"issue_date": "2024-11-21",
"department_id": "222",
"client_id": "111",
"warehouse_actions":[
{"product_id":"333", "purchase_tax":23, "price_net":10.23, "quantity":1},
{"product_id":"333", "purchase_tax":0, "price_net":50, "quantity":2}
]
}}'
Code CURL herunterladenAktualisierung des Dokumentes
curl https://YOUR_DOMAIN.efakturierung.de/warehouse_documents/555.json \
-X PUT \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{"api_token": "API_TOKEN",
"warehouse_document": {
"client_name": "New client name SA"
}}'
Code CURL herunterladenLöschung des Dokumentes
JSON curl -X DELETE "https://YOUR_DOMAIN.efakturierung.de/warehouse_documents/100.json?api_token=API_TOKEN"
Produkte / Dienstleistungen
alle Produkte
JSON curl "https://YOUR_DOMAIN.efakturierung.de/products.json?page=1&per_page=25&api_token=API_TOKEN&page=1"
XML curl "https://YOUR_DOMAIN.efakturierung.de/products.xml?page=1&per_page=25&api_token=API_TOKEN&page=1"
Gewähltes Produkt nach ID herunterladen
curl "https://YOUR_DOMAIN.efakturierung.de/products/100.xml?api_token=API_TOKEN"
Ein Produkt hinzufügen
curl https://YOUR_DOMAIN.efakturierung.de/products.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{"api_token": "API_TOKEN",
"product": {
"name": "PoroductAA",
"code": "A001",
"price_net": "100",
"tax": "23"
}}'
Code CURL herunterladenProdukt Update
curl https://YOUR_DOMAIN.efakturierung.de/products/333.json \
-X PUT \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{"api_token": "API_TOKEN",
"product": {
"name": "PoroductAA2",
"code": "A0012",
"price_gross": "102"
}}'
Code CURL herunterladenWidget
Zum Herunterladen der Zahlung-Widget (in JS-Format) URL angeben:
https://app.eFakturierung.de/a/YOUR_DOMAIN/p/{{token}}.js
Kunden
Alle Kunden
JSON curl "https://YOUR_DOMAIN.efakturierung.de/clients.json?page=1&per_page=25&api_token=API_TOKEN"
XML curl "https://YOUR_DOMAIN.efakturierung.de/clients.xml?page=1&per_page=25&api_token=API_TOKEN"
Gewählten Kunden nach ID aufrufen
curl "https://YOUR_DOMAIN.efakturierung.de/clients/100.xml?api_token=API_TOKEN"
Abrufen des ausgewählten Kunden anhand einer externen ID
JSON curl "https://YOUR_DOMAIN.efakturierung.de/clients.json?external_id=100&api_token=API_TOKEN"
XML curl "https://YOUR_DOMAIN.efakturierung.de/clients.xml?external_id=100&api_token=API_TOKEN"
Neuen Kunden hinzufügen
curl https://YOUR_DOMAIN.efakturierung.de/clients.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{"api_token": "API_TOKEN",
"client": {
"name": "Client1",
"tax_no": "6272616681",
"bank" : "bank1",
"bank_account" : "bank_account1",
"city" : "city1",
"country" : "",
"email" : "example@email.com",
"person" : "person1",
"post_code" : "post-code1",
"phone" : "phone1",
"street" : "street1"
}}'
Code CURL herunterladenKundenupdate
curl https://YOUR_DOMAIN.efakturierung.de/clients/111.json \
-X PUT \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{"api_token": "API_TOKEN",
"client": {
"name": "Klient2",
"tax_no": "62726166812",
"bank" : "bank2",
"bank_account" : "bank_account2",
"city" : "city2",
"country" : "PL",
"email" : "example2@email.com",
"person" : "person2",
"post_code" : "post-code2",
"phone" : "phone2",
"street" : "street2"
}}'
Code CURL herunterladenZahlungen
alle Zahlungen
JSON curl "https://YOUR_DOMAIN.efakturierung.de/banking/payments.json?page=1&per_page=25&api_token=API_TOKEN"
XML curl "https://YOUR_DOMAIN.efakturierung.de/banking/payments.xml?page=1&per_page=25&api_token=API_TOKEN"
Gewählte Zahlung nach ID herunterladen
JSON curl "https://YOUR_DOMAIN.efakturierung.de/banking/payment/100.json?api_token=API_TOKEN"
XML curl "https://YOUR_DOMAIN.efakturierung.de/banking/payments/100.xml?api_token=API_TOKEN"
Neue Zahlung hinzufügen
minimal JSON (empfohlen)curl https://YOUR_DOMAIN.efakturierung.de/banking/payments.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"api_token": "API_TOKEN",
"banking_payment": {
"name":"Payment 001",
"price": 100.05,
"invoice_id": null,
"paid":true,
"kind": "api"
}}'
Code CURL herunterladenfull JSON (empfohlen)
curl https://YOUR_DOMAIN.efakturierung.de/banking/payments.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"api_token": "API_TOKEN",
"banking_payment": {
"city": null,
"client_id":null,
"comment":null,
"country":null,
"currency":"PLN",
"deleted":false,
"department_id":null,
"description":"abonament roczny",
"email":"email@email.pl",
"first_name":"Jan",
"generate_invoice":true,
"invoice_city":"Warszawa",
"invoice_comment":"",
"invoice_country":null,
"invoice_id":null,
"invoice_name":"Company name",
"invoice_post_code":"00-112",
"invoice_street":"street 52",
"invoice_tax_no":"6272616681",
"last_name":"Kowalski",
"name":"Plantnosc za produkt1",
"oid":"",
"paid":true,
"paid_date":null,
"phone":null,
"post_code":null,
"price":"100.00",
"product_id":1,
"promocode":"",
"provider":"transfer",
"provider_response":null,
"provider_status":null,
"provider_title":null,
"quantity":1,
"street":null,
"kind": "api"
}}'
Code CURL herunterladenKategorien
Erstellen neuer Kategorie
JSON (empfohlen)curl https://YOUR_DOMAIN.efakturierung.de/categories.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"api_token": "API_TOKEN",
"category": {
"name": "my_category",
"description": null
}
}'
Code CURL herunterladenListe der Kategorien
XML curl "https://YOUR_DOMAIN.efakturierung.de/categories.xml?api_token=API_TOKEN"
JSON curl "https://YOUR_DOMAIN.efakturierung.de/categories.json?api_token=API_TOKEN"
Informationen zu einer einzelnen Kategorie nach ID abrufen
XML curl "https://YOUR_DOMAIN.efakturierung.de/categories/100.xml?api_token=API_TOKEN"
JSON curl "https://YOUR_DOMAIN.efakturierung.de/categories/100.json?api_token=API_TOKEN"
Andere Beispiele: https://github.com/InvoiceOcean/api
Lager
Erstellung eines neuen Lagers
JSON (empfohlen)curl https://YOUR_DOMAIN.efakturierung.de/warehouses.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"api_token": "API_TOKEN",
"warehouse": {
"name": "my_warehouse",
"kind": null,
"description": null
}
}'
Code CURL herunterladenListe der Lager herunterladen
JSON curl "https://YOUR_DOMAIN.efakturierung.de/warehouses.json?api_token=API_TOKEN"
XML curl "https://YOUR_DOMAIN.efakturierung.de/warehouses.xml?api_token=API_TOKEN"
Abrufen von Informationen über das Lager anhand der ID
JSON curl "https://YOUR_DOMAIN.efakturierung.de/warehouses/100.json?api_token=API_TOKEN"
XML curl "https://YOUR_DOMAIN.efakturierung.de/warehouses/100.xml?api_token=API_TOKEN"
Integrationen
Neuen Benutzer hinzufügen
JSON method: POST url: https://app.efakturierung.de/users.json
{
"user": {
"email": "email32515@fakturowytmail.pl",
"password": "your_secret_password"
},
"integration_token": "email-us-for-this-token"
}
Code CURL herunterladen | Code Ruby herunterladen | Code JavaScript herunterladen | Code PHP herunterladen | Code JSON herunterladenBenutzerinfo herunterladen (samt API Zugangscode)
JSON method: POST url: https://app.efakturierung.de/login.json
{
"login": "email32515@fakturowytmail.pl",
"password": "your_secret_password",
"integration_token": "email-us-for-this-token"
}
Code CURL herunterladen | Code Ruby herunterladen | Code JavaScript herunterladen | Code PHP herunterladen | Code JSON herunterladenNeues Konto erstellen
JSON method: POST url: https://app.efakturierung.de/account.json
{
"api_token": "API_TOKEN",
"account": {
"prefix": "ftprefix"
},
"integration_token": "email-us-for-this-token"
}
Code CURL herunterladen | Code Ruby herunterladen | Code JavaScript herunterladen | Code PHP herunterladen | Code JSON herunterladenErstellen eines neuen Kontos mit dem Eigentümer dieses Kontos und den Unternehmensdaten zusammen
JSONcurl https://app.efakturierung.de/account.json \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"api_token": "API_TOKEN",
"account": {
"prefix": "prefix1"
},
"user": {
"login": "login1",
"email": "email1@email.pl",
"password": "password1",
"from_partner": "PARTNER_CODE"
},
"company": {
"name": "Company1",
"tax_no": "5252445700",
"post_code": "00-112",
"city": "Warsaw",
"street": "Street 1/10",
"person": "Jan Nowak",
"bank": "Bank1",
"bank_account": "111222333444555666111"
},
"integration_token": "email-us-for-this-token"
}'
Code CURL herunterladenKontoinformationen herunterladen
Code CURL herunterladen
https://YOUR_DOMAIN.efakturierung.de/account.json?api_token=API_TOKEN&integration_token=email-us-for-this-token
Abteilungen
Logo hinzufügen
curl -X PUT https://YOUR_DOMAIN.efakturierung.de/departments/222.json \
-F 'api_token=API_TOKEN' \
-F 'department[logo]=@/file_path/logo.png'
Code CURL herunterladen
Andere Beispiele: https://github.com/InvoiceOcean/api
- Rechnungen
- Produkte / Dienstleistungen
- Kunden
- Lagerdokumente
- Zahlungen
- Kategorien
- Lager
- Integrationen
- Abteilungen