aYOUne
← planning API

PlanningSnapshotChunks

Singular: PlanningSnapshotChunk — Base-URL: https://planning-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 /planningsnapshotchunks Liste mit Filtern/Paginierung planning.planningsnapshotchunks.view
GET /planningsnapshotchunks/:id Einzelner Datensatz via ID planning.planningsnapshotchunks.view

SDK

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

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

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

Weiterführend