← Project Management API
CallContextLayouts
Singular: CallContextLayout — Base URL: https://pm-api.ayoune.app — Access: CRUD
Try it now
beta
Response (live)
Requests are proxied through the consumer-app to *.ayoune.app. Tokens stay in your browser and are forwarded per call.
Example response (recorded) sample
A real, previously recorded GET /:id response of this endpoint — not the live call above. Sensitive fields are masked.
{
"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
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /callcontextlayouts |
List with filters/pagination | pm.callcontextlayouts.view |
| GET | /callcontextlayouts/:id |
Single record | pm.callcontextlayouts.view |
| POST | /callcontextlayouts |
Create new record | pm.callcontextlayouts.new |
| PUT | /callcontextlayouts |
Update record | pm.callcontextlayouts.edit |
| DELETE | /callcontextlayouts/:id |
Delete record | pm.callcontextlayouts.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.pm.callContextLayouts.find().limit(10).exec();
// Single record
const one = await ay.pm.callContextLayouts.findById('OBJECT_ID').exec();
// Create
const created = await ay.pm.callContextLayouts.create({ name: 'Foo' });