← Marketing API
Meetings
Singular: Meeting — Base URL: https://marketing-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": {
"lp": {
"showTestimonials": false,
"showSpeakers": false,
"showSponsors": false
},
"fields": {
"company": true,
"phone": true,
"position": true
},
"excerpt": "",
"coverImage": "",
"postText": "",
"autoSendTicket": false,
"codeMode": "qr",
"gotoWebinar": false,
"zoom": false,
"_id": "65e0b133121b7d48fe15920b",
"type": "Webinar",
"description": "",
"post_text": "",
"active": true,
"ticketing": false,
"autoSendticket": false,
"codemode": "qr",
"useQuota": false,
"quota": -1,
"booked": 0,
"advancedLP": false,
"gotowebinar": false,
"createdBy": "6045f4d25704710012485569",
"programm": [],
"speakers": [],
"sponsors": [],
"faqs": [],
"attendees": [],
"attendees_tookPart": [],
"attendees_noshows": [],
"createdAt": "2024-02-29T16:30:43.417Z",
"updatedAt": "2024-02-29T16:30:43.417Z",
"attendees_noShows": []
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://marketing-api.ayoune.app/meetings/65e0b133121b7d48fe15920b",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [
{
"rel": "Mails",
"title": "MODEL_MAIL",
"href": "https://api.ayoune.app/config/mails",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "config.mails"
},
{
"rel": "EMailTemplates",
"title": "MODEL_EMAILTEMPLATE",
"href": "https://api.ayoune.app/config/emailtemplates",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "config.emailtemplates"
},
{
"rel": "Properties",
"title": "MODEL_PROPERTY",
"href": "https://api.ayoune.app/config/properties",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "config.properties"
},
{
"rel": "Meetings",
"title": "MODEL_MEETING",
"href": "https://api.ayoune.app/marketing/meetings",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "marketing.meetings"
},
{
"rel": "Products",
"title": "MODEL_PRODUCT",
"href": "https://api.ayoune.app/pim/products",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "pim.products"
},
{
"rel": "MeetingLocations",
"title": "MODEL_MEETINGLOCATION",
"href": "https://api.ayoune.app/marketing/meetinglocations",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "marketing.meetinglocations"
}
],
"debugId": "6a6194a0f78ad61f1990ef0c",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_MEETING",
"href": "https://api.ayoune.app/marketing/meetings/65e0b133121b7d48fe15920b/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_MEETING",
"href": "https://api.ayoune.app/marketing/meetings/65e0b133121b7d48fe15920b/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.24.4",
"core": "2026.257.1"
},
"rateLimit": {
"limit": "2500",
"remaining": "1984",
"reset": "1784783437",
"resetDate": "Thu Jul 23 2026"
},
"responseTime": 56.02946,
"code": 200,
"status": "success",
"error": false
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /meetings |
List with filters/pagination | marketing.meetings.view |
| GET | /meetings/:id |
Single record | marketing.meetings.view |
| POST | /meetings |
Create new record | marketing.meetings.new |
| PUT | /meetings |
Update record | marketing.meetings.edit |
| DELETE | /meetings/:id |
Delete record | marketing.meetings.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.marketing.meetings.find().limit(10).exec();
// Single record
const one = await ay.marketing.meetings.findById('OBJECT_ID').exec();
// Create
const created = await ay.marketing.meetings.create({ name: 'Foo' });