← Konfiguration API
MeetingGroups
Singular: MeetingGroup — Base-URL: https://config-api.ayoune.app — Zugriff: CRUD — Maschinenlesbare Beschreibung (JSON · YAML)
Jetzt ausprobieren
beta
Response (live)
Requests werden über den consumer-app Proxy an *.ayoune.app weitergeleitet. Tokens bleiben im Browser und werden pro Call mitgesendet.
Beispiel-Response (aufgezeichnet) Beispiel
Eine echte, zuvor aufgezeichnete GET /:id-Antwort dieses Endpunkts — nicht der Live-Call oben. Sensible Felder sind maskiert.
{
"payload": {
"_id": "6a9ce87603989c22cd56d91f",
"name": "RELIABLE_SCARLET_C-3PO",
"createdBy": "6045f4d25704710012485569",
"shares": [],
"createdAt": "2026-09-06T04:13:42.466Z",
"updatedAt": "2026-09-06T04:13:42.466Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://config-api.ayoune.app/meetinggroups/6a9ce87603989c22cd56d91f",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [],
"debugId": "6a9ce87603989c22cd56d941",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_MEETINGGROUP",
"href": "https://api.ayoune.app/config/meetinggroups/6a9ce87603989c22cd56d91f/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_MEETINGGROUP",
"href": "https://api.ayoune.app/config/meetinggroups/6a9ce87603989c22cd56d91f",
"method": "delete",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.153.0",
"core": "2026.329.0"
},
"rateLimit": {
"limit": "2500",
"remaining": "936",
"reset": "1788670916",
"resetDate": "Sun Sep 06 2026"
},
"responseTime": 24.076968,
"code": 200,
"status": "success",
"error": false
}
}
Endpunkte
| Methode | Path | Beschreibung | Right |
|---|---|---|---|
| GET | /meetinggroups |
Liste mit Filtern/Paginierung | config.meetinggroups.view |
| GET | /meetinggroups/:id |
Einzelner Datensatz | config.meetinggroups.view |
| POST | /meetinggroups |
Neuen Datensatz erstellen | config.meetinggroups.new |
| PUT | /meetinggroups |
Datensatz aktualisieren | config.meetinggroups.edit |
| DELETE | /meetinggroups/:id |
Datensatz löschen | config.meetinggroups.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// Alle abrufen
const list = await ay.config.meetingGroups.find().limit(10).exec();
// Einzelnen Datensatz
const one = await ay.config.meetingGroups.findById('OBJECT_ID').exec();
// Erstellen
const created = await ay.config.meetingGroups.create({ name: 'Foo' });