← Configuration API
MeetingGroups
Singular: MeetingGroup — Base URL: https://config-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": "6a62df3af27d6098834b2d0c",
"name": "EFFECTIVE_GOLD_IG-88",
"createdBy": "6045f4d25704710012485569",
"createdAt": "2026-07-24T03:42:50.904Z",
"updatedAt": "2026-07-24T03:42:50.904Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://config-api.ayoune.app/meetinggroups/6a62df3af27d6098834b2d0c",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [],
"debugId": "6a62df3bf27d6098834b2d46",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_MEETINGGROUP",
"href": "https://api.ayoune.app/config/meetinggroups/6a62df3af27d6098834b2d0c/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_MEETINGGROUP",
"href": "https://api.ayoune.app/config/meetinggroups/6a62df3af27d6098834b2d0c/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.95.0",
"core": "2026.258.0"
},
"rateLimit": {
"limit": "2500",
"remaining": "92",
"reset": "1784865648",
"resetDate": "Fri Jul 24 2026"
},
"responseTime": 98.228094,
"code": 200,
"status": "success",
"error": false
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /meetinggroups |
List with filters/pagination | config.meetinggroups.view |
| GET | /meetinggroups/:id |
Single record | config.meetinggroups.view |
| POST | /meetinggroups |
Create new record | config.meetinggroups.new |
| PUT | /meetinggroups |
Update record | config.meetinggroups.edit |
| DELETE | /meetinggroups/:id |
Delete record | config.meetinggroups.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.config.meetingGroups.find().limit(10).exec();
// Single record
const one = await ay.config.meetingGroups.findById('OBJECT_ID').exec();
// Create
const created = await ay.config.meetingGroups.create({ name: 'Foo' });