aYOUne
← CRM API

ConsumerNotifications

Singular: ConsumerNotification — Base-URL: https://crm-api.ayoune.app — Zugriff: read-only

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.

Endpunkte

MethodePathBeschreibungRight
GET /consumernotifications Liste mit Filtern/Paginierung crm.consumernotifications.view
GET /consumernotifications/:id Einzelner Datensatz via ID crm.consumernotifications.view

SDK

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

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

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

Weiterführend