aYOUne
← marketplace API

MarketplaceInstallations

Singular: MarketplaceInstallation — Base-URL: https://marketplace-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 /marketplaceinstallations Liste mit Filtern/Paginierung marketplace.marketplaceinstallations.view
GET /marketplaceinstallations/:id Einzelner Datensatz marketplace.marketplaceinstallations.view
POST /marketplaceinstallations Neuen Datensatz erstellen marketplace.marketplaceinstallations.new
PUT /marketplaceinstallations Datensatz aktualisieren marketplace.marketplaceinstallations.edit
DELETE /marketplaceinstallations/:id Datensatz löschen marketplace.marketplaceinstallations.delete

SDK

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

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

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

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

Weiterführend