← coding API
CodingJobs
Singular: CodingJob — Base-URL: https://coding-api.ayoune.app — Zugriff: CRUD — 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": {
"_id": "6a7c71f578c49e7e2386ac1c",
"status": "cancelled",
"priority": 0,
"spec": {
"prompt": "Antworte mit genau dem Wort DURCHSTICH und sonst nichts. Aendere keine Datei.",
"acceptanceCriteria": []
},
"attemptCount": 0,
"isDraft": true,
"createdBy": "5a76d07e2d8b3270ff6df587",
"createdAt": "2026-08-12T13:15:33.211Z",
"updatedAt": "2026-08-12T13:56:34.261Z",
"modifiedBy": "5a76d07e2d8b3270ff6df587"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://coding-api.ayoune.app/codingjobs/6a7c71f578c49e7e2386ac1c",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [
{
"rel": "Tasks",
"title": "MODEL_TASK",
"href": "https://api.ayoune.app/pm/tasks",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "pm.tasks"
},
{
"rel": "Stories",
"title": "MODEL_STORY",
"href": "https://api.ayoune.app/pm/stories",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "pm.stories"
},
{
"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": "Milestones",
"title": "MODEL_MILESTONE",
"href": "https://api.ayoune.app/pm/milestones",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "pm.milestones"
},
{
"rel": "Epics",
"title": "MODEL_EPIC",
"href": "https://api.ayoune.app/pm/epics",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "pm.epics"
},
{
"rel": "Sprints",
"title": "MODEL_SPRINT",
"href": "https://api.ayoune.app/pm/sprints",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "pm.sprints"
},
{
"rel": "Components",
"title": "MODEL_COMPONENT",
"href": "https://api.ayoune.app/pm/components",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "pm.components"
},
{
"rel": "Repositories",
"title": "MODEL_REPOSITORY",
"href": "https://api.ayoune.app/devops/repositories",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "devops.repositories"
},
{
"rel": "CodeAgents",
"title": "MODEL_CODEAGENT",
"href": "https://api.ayoune.app/coding/codeagents",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "coding.agents"
}
],
"debugId": "6a8e6043cf91163092d71358",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_CODINGJOB",
"href": "https://api.ayoune.app/coding/codingjobs/6a7c71f578c49e7e2386ac1c/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_CODINGJOB",
"href": "https://api.ayoune.app/coding/codingjobs/6a7c71f578c49e7e2386ac1c",
"method": "delete",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.57.0",
"core": "2026.319.0"
},
"rateLimit": {
"limit": "2500",
"remaining": "2439",
"reset": "1787719247",
"resetDate": "Wed Aug 26 2026"
},
"responseTime": 43.891959,
"code": 200,
"status": "success",
"error": false
}
}
Endpunkte
| Methode | Path | Beschreibung | Right |
|---|---|---|---|
| GET | /codingjobs |
Liste mit Filtern/Paginierung | coding.jobs.view |
| GET | /codingjobs/:id |
Einzelner Datensatz | coding.jobs.view |
| POST | /codingjobs |
Neuen Datensatz erstellen | coding.jobs.new |
| PUT | /codingjobs |
Datensatz aktualisieren | coding.jobs.edit |
| DELETE | /codingjobs/:id |
Datensatz löschen | coding.jobs.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// Alle abrufen
const list = await ay.coding.codingJobs.find().limit(10).exec();
// Einzelnen Datensatz
const one = await ay.coding.codingJobs.findById('OBJECT_ID').exec();
// Erstellen
const created = await ay.coding.codingJobs.create({ name: 'Foo' });