aYOUne
← Automation API

AutomationExecutions

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

SDK

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

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

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

Weiterführend