aYOUne
← Konfiguration API

PronunciationEntries

Singular: PronunciationEntry — Base-URL: https://config-api.ayoune.app — Zugriff: CRUD — Maschinenlesbare Beschreibung (JSON · YAML)

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 /pronunciationentries Liste mit Filtern/Paginierung config.pronunciationentries.view
GET /pronunciationentries/:id Einzelner Datensatz config.pronunciationentries.view
POST /pronunciationentries Neuen Datensatz erstellen config.pronunciationentries.new
PUT /pronunciationentries Datensatz aktualisieren config.pronunciationentries.edit
DELETE /pronunciationentries/:id Datensatz löschen config.pronunciationentries.delete

SDK

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

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

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

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

Weiterführend