← Configuration API
CustomerDashboards
Singular: CustomerDashboard — Base URL: https://config-api.ayoune.app — Access: CRUD — Machine-readable spec (JSON · YAML)
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": "6a893ffbfe2f32a4c6f1de8d",
"seedSource": "seedAbschlussquoteDashboardTemplates:v1",
"slug": "abschlussquote-assignment-appointments",
"active": true,
"cards": [
{
"widget": "6a893ffbfe2f32a4c6f1de83",
"x": 0,
"y": 0,
"cols": 4,
"rows": 3
},
{
"widget": "6a893ffbfe2f32a4c6f1de84",
"x": 4,
"y": 0,
"cols": 4,
"rows": 3
},
{
"widget": "6a893ffbfe2f32a4c6f1de85",
"x": 8,
"y": 0,
"cols": 4,
"rows": 3
},
{
"widget": "6a893ffbfe2f32a4c6f1de86",
"x": 0,
"y": 3,
"cols": 5,
"rows": 6
},
{
"widget": "6a893ffbfe2f32a4c6f1de87",
"x": 5,
"y": 3,
"cols": 7,
"rows": 6
}
],
"createdAt": "2026-08-22T06:21:47.561Z",
"description": "Wie viele Termine zu einem Abschluss gefuehrt haben — zwei Zaehler, die Abschlussquote, die Verteilung nach Verknuepfungs-Zustand und die Uebersicht. Nachfolger des Alt-Berichts „reporting.aggregated.assignment-appointments\".",
"gridsterOptions": {
"minCols": 12,
"maxCols": 12
},
"licenses": [],
"name": "Auftraege durch Termine",
"namespace": "reporting",
"pageFilter": {
"timeFrame": "lastWeek",
"dateField": "start",
"filters": [],
"filterValues": {}
},
"seedVersion": 1,
"updatedAt": "2026-09-10T15:28:43.870Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://reporting-api.ayoune.app/customerdashboards/templates/6a893ffbfe2f32a4c6f1de8d",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [],
"debugId": "6aa386ee963af9b5cc7edde8",
"errors": [],
"actions": [],
"version": {
"host": "2026.39.0",
"core": "2026.335.0"
},
"rateLimit": {
"limit": "2500",
"remaining": "2294",
"reset": "1789105331",
"resetDate": "Fri Sep 11 2026"
},
"responseTime": 28.77426,
"code": 200,
"status": "success",
"error": false
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /customerdashboards |
List with filters/pagination | config.customerdashboards.view |
| GET | /customerdashboards/:id |
Single record | config.customerdashboards.view |
| POST | /customerdashboards |
Create new record | config.customerdashboards.new |
| PUT | /customerdashboards |
Update record | config.customerdashboards.edit |
| DELETE | /customerdashboards/:id |
Delete record | config.customerdashboards.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.config.customerDashboards.find().limit(10).exec();
// Single record
const one = await ay.config.customerDashboards.findById('OBJECT_ID').exec();
// Create
const created = await ay.config.customerDashboards.create({ name: 'Foo' });