← KI / AI API
RunningPipelines
Singular: RunningPipeline — Base-URL: https://ai.ayoune.app — Zugriff: read-only — Maschinenlesbare Beschreibung (JSON · YAML)
Jetzt ausprobieren
beta
Response (live)
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": {
"stats": {
"totalStages": 0,
"stagesDone": 0,
"stagesOpen": 0,
"stageProgress": 0,
"totalJobs": 0,
"jobsDone": 0,
"jobsOpen": 0,
"jobProgress": 0
},
"_id": "65e0afb9121b7d48fe15513d",
"done": false,
"_user": "6045f4d25704710012485569",
"multiInstance": false,
"entities": [],
"protected": false,
"active": false,
"isDraft": true,
"createdBy": "6045f4d25704710012485569",
"warnings": [],
"pErrors": [],
"logs": [],
"stages": [],
"createdAt": "2024-02-29T16:24:25.717Z",
"updatedAt": "2024-02-29T16:24:25.717Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://ai.ayoune.app/runningpipelines/65e0afb9121b7d48fe15513d",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [
{
"rel": "Consumers",
"title": "MODEL_CONSUMER",
"href": "https://api.ayoune.app/crm/consumers",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "crm.consumers"
},
{
"rel": "Configurations",
"title": "MODEL_CONFIGURATION",
"href": "https://api.ayoune.app/sale/configurations",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "sale.configurations"
},
{
"rel": "Offers",
"title": "MODEL_OFFER",
"href": "https://api.ayoune.app/sale/offers",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "sale.offers"
},
{
"rel": "Projects",
"title": "MODEL_PROJECT",
"href": "https://api.ayoune.app/pm/projects",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "pm.projects"
},
{
"rel": "Assignments",
"title": "MODEL_ASSIGNMENT",
"href": "https://api.ayoune.app/sale/assignments",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "sale.assignments"
},
{
"rel": "Invoices",
"title": "MODEL_INVOICE",
"href": "https://api.ayoune.app/sale/invoices",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "sale.invoices"
}
],
"debugId": "6a8a6b28860e841d7c8afe17",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_RUNNINGPIPELINE",
"href": "https://api.ayoune.app/ai/runningpipelines/65e0afb9121b7d48fe15513d/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_RUNNINGPIPELINE",
"href": "https://api.ayoune.app/ai/runningpipelines/65e0afb9121b7d48fe15513d/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.162.0",
"core": "2026.315.1"
},
"rateLimit": {
"limit": "10000",
"remaining": "9614",
"reset": "1787459872",
"resetDate": "Sun Aug 23 2026"
},
"responseTime": 34.807689,
"code": 200,
"status": "success",
"error": false
}
}
Endpunkte
| Methode | Path | Beschreibung | Right |
|---|---|---|---|
| GET | /runningpipelines |
Liste mit Filtern/Paginierung | ai.runningpipelines.view |
| GET | /runningpipelines/:id |
Einzelner Datensatz via ID | ai.runningpipelines.view |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// Alle abrufen
const list = await ay.ai.runningPipelines.find().limit(10).exec();
// Einzelnen Datensatz
const one = await ay.ai.runningPipelines.findById('OBJECT_ID').exec();