← Projektmanagement API
PmRequirements
Singular: PmRequirement — 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": "6a619882f0cde3e459455eee",
"name": "CONSERVATIVE_INDIGO_GREEDO",
"status": "draft",
"goals": [],
"outOfScope": [],
"tags": [],
"createdBy": "6045f4d25704710012485569",
"assumptions": [],
"questions": [],
"createdAt": "2026-07-23T04:28:50.666Z",
"updatedAt": "2026-07-23T04:28:50.666Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://pm-api.ayoune.app/pmrequirements/6a619882f0cde3e459455eee",
"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": "6a619883f0cde3e459455f20",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_PMREQUIREMENT",
"href": "https://api.ayoune.app/pm/pmrequirements/6a619882f0cde3e459455eee/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_PMREQUIREMENT",
"href": "https://api.ayoune.app/pm/pmrequirements/6a619882f0cde3e459455eee/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.34.0",
"core": "2026.257.1"
},
"rateLimit": {
"limit": "2500",
"remaining": "2121",
"reset": "1784784467",
"resetDate": "Thu Jul 23 2026"
},
"responseTime": 108.16694,
"code": 200,
"status": "success",
"error": false
}
}
Endpunkte
| Methode | Path | Beschreibung | Right |
|---|---|---|---|
| GET | /pmrequirements |
Liste mit Filtern/Paginierung | pm.requirements.view |
| GET | /pmrequirements/:id |
Einzelner Datensatz | pm.requirements.view |
| POST | /pmrequirements |
Neuen Datensatz erstellen | pm.requirements.new |
| PUT | /pmrequirements |
Datensatz aktualisieren | pm.requirements.edit |
| DELETE | /pmrequirements/:id |
Datensatz löschen | pm.requirements.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// Alle abrufen
const list = await ay.pm.pmRequirements.find().limit(10).exec();
// Einzelnen Datensatz
const one = await ay.pm.pmRequirements.findById('OBJECT_ID').exec();
// Erstellen
const created = await ay.pm.pmRequirements.create({ name: 'Foo' });