← Projektmanagement API
Spaces
Singular: Space — Base-URL: https://pm-api.ayoune.app — Zugriff: CRUD
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": {
"_id": "6a619888f0cde3e459456140",
"_channels": [],
"_members": [],
"name": "OVERALL_AMARANTH_WICKET SYSTRI WARRICK",
"createdBy": "6045f4d25704710012485569",
"createdAt": "2026-07-23T04:28:56.557Z",
"updatedAt": "2026-07-23T04:28:56.557Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://pm-api.ayoune.app/spaces/6a619888f0cde3e459456140",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [
{
"rel": "Projects",
"title": "MODEL_PROJECT",
"href": "https://api.ayoune.app/pm/projects",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "pm.projects"
}
],
"debugId": "6a61988af0cde3e4594561a0",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_SPACE",
"href": "https://api.ayoune.app/pm/spaces/6a619888f0cde3e459456140/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_SPACE",
"href": "https://api.ayoune.app/pm/spaces/6a619888f0cde3e459456140/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.34.0",
"core": "2026.257.1"
},
"rateLimit": {
"limit": "2500",
"remaining": "2075",
"reset": "1784784467",
"resetDate": "Thu Jul 23 2026"
},
"responseTime": 191.356568,
"code": 200,
"status": "success",
"error": false
}
}
Endpunkte
| Methode | Path | Beschreibung | Right |
|---|---|---|---|
| GET | /spaces |
Liste mit Filtern/Paginierung | pm.spaces.view |
| GET | /spaces/:id |
Einzelner Datensatz | pm.spaces.view |
| POST | /spaces |
Neuen Datensatz erstellen | pm.spaces.new |
| PUT | /spaces |
Datensatz aktualisieren | pm.spaces.edit |
| DELETE | /spaces/:id |
Datensatz löschen | pm.spaces.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// Alle abrufen
const list = await ay.pm.spaces.find().limit(10).exec();
// Einzelnen Datensatz
const one = await ay.pm.spaces.findById('OBJECT_ID').exec();
// Erstellen
const created = await ay.pm.spaces.create({ name: 'Foo' });