← Projektmanagement API
CallContextLayouts
Singular: CallContextLayout — Base-URL: https://pm-api.ayoune.app — Zugriff: CRUD
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": "6a619885f0cde3e459456046",
"name": "ELDERLY_BLUSH_GREEDO",
"createdBy": "6045f4d25704710012485569",
"fields": [],
"createdAt": "2026-07-23T04:28:53.758Z",
"updatedAt": "2026-07-23T04:28:53.758Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://pm-api.ayoune.app/callcontextlayouts/6a619885f0cde3e459456046",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [],
"debugId": "6a619887f0cde3e45945609d",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_CALLCONTEXTLAYOUT",
"href": "https://api.ayoune.app/pm/callcontextlayouts/6a619885f0cde3e459456046/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_CALLCONTEXTLAYOUT",
"href": "https://api.ayoune.app/pm/callcontextlayouts/6a619885f0cde3e459456046/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.34.0",
"core": "2026.257.1"
},
"rateLimit": {
"limit": "2500",
"remaining": "2093",
"reset": "1784784467",
"resetDate": "Thu Jul 23 2026"
},
"responseTime": 106.68844,
"code": 200,
"status": "success",
"error": false
}
}
Endpunkte
| Methode | Path | Beschreibung | Right |
|---|---|---|---|
| GET | /callcontextlayouts |
Liste mit Filtern/Paginierung | pm.callcontextlayouts.view |
| GET | /callcontextlayouts/:id |
Einzelner Datensatz | pm.callcontextlayouts.view |
| POST | /callcontextlayouts |
Neuen Datensatz erstellen | pm.callcontextlayouts.new |
| PUT | /callcontextlayouts |
Datensatz aktualisieren | pm.callcontextlayouts.edit |
| DELETE | /callcontextlayouts/:id |
Datensatz löschen | pm.callcontextlayouts.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// Alle abrufen
const list = await ay.pm.callContextLayouts.find().limit(10).exec();
// Einzelnen Datensatz
const one = await ay.pm.callContextLayouts.findById('OBJECT_ID').exec();
// Erstellen
const created = await ay.pm.callContextLayouts.create({ name: 'Foo' });