aYOUne
← Marketing API

Meetings

Singular: Meeting — Base-URL: https://marketing-api.ayoune.app — Zugriff: CRUD

play_circle Jetzt ausprobieren beta

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": {
    "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
  }
}

Endpunkte

MethodePathBeschreibungRight
GET /meetings Liste mit Filtern/Paginierung marketing.meetings.view
GET /meetings/:id Einzelner Datensatz marketing.meetings.view
POST /meetings Neuen Datensatz erstellen marketing.meetings.new
PUT /meetings Datensatz aktualisieren marketing.meetings.edit
DELETE /meetings/:id Datensatz löschen marketing.meetings.delete

SDK

import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');

// Alle abrufen
const list = await ay.marketing.meetings.find().limit(10).exec();

// Einzelnen Datensatz
const one = await ay.marketing.meetings.findById('OBJECT_ID').exec();

// Erstellen
const created = await ay.marketing.meetings.create({ name: 'Foo' });

Weiterführend