aYOUne
← Buchhaltung API

AccountingProviderConnections

Singular: AccountingProviderConnection — Base-URL: https://accounting-api.ayoune.app — Zugriff: CRUD

play_circle Jetzt ausprobieren beta

Requests werden über den consumer-app Proxy an *.ayoune.app weitergeleitet. Tokens bleiben im Browser und werden pro Call mitgesendet.

Endpunkte

MethodePathBeschreibungRight
GET /accountingproviderconnections Liste mit Filtern/Paginierung accounting.providerconnections.view
GET /accountingproviderconnections/:id Einzelner Datensatz accounting.providerconnections.view
POST /accountingproviderconnections Neuen Datensatz erstellen accounting.providerconnections.new
PUT /accountingproviderconnections Datensatz aktualisieren accounting.providerconnections.edit
DELETE /accountingproviderconnections/:id Datensatz löschen accounting.providerconnections.delete

SDK

import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');

// Alle abrufen
const list = await ay.accounting.accountingProviderConnections.find().limit(10).exec();

// Einzelnen Datensatz
const one = await ay.accounting.accountingProviderConnections.findById('OBJECT_ID').exec();

// Erstellen
const created = await ay.accounting.accountingProviderConnections.create({ name: 'Foo' });

Weiterführend