← Project Management API
KanbanBoards
Singular: KanbanBoard — Base URL: https://pm-api.ayoune.app — Access: CRUD
Try it now
beta
Response (live)
Requests are proxied through the consumer-app to *.ayoune.app. Tokens stay in your browser and are forwarded per call.
Example response (recorded) sample
A real, previously recorded GET /:id response of this endpoint — not the live call above. Sensitive fields are masked.
{
"payload": {
"_id": "65e0b18a121b7d48fe1599f7",
"createdBy": "6045f4d25704710012485569",
"lanes": [],
"createdAt": "2024-02-29T16:32:10.230Z",
"updatedAt": "2024-02-29T16:32:10.230Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://pm-api.ayoune.app/kanbanboards/65e0b18a121b7d48fe1599f7",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [],
"debugId": "6a61985cf0cde3e459454fff",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_KANBANBOARD",
"href": "https://api.ayoune.app/pm/kanbanboards/65e0b18a121b7d48fe1599f7/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_KANBANBOARD",
"href": "https://api.ayoune.app/pm/kanbanboards/65e0b18a121b7d48fe1599f7/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.34.0",
"core": "2026.257.1"
},
"rateLimit": {
"limit": "2500",
"remaining": "2366",
"reset": "1784784467",
"resetDate": "Thu Jul 23 2026"
},
"responseTime": 16.717689,
"code": 200,
"status": "success",
"error": false
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /kanbanboards |
List with filters/pagination | pm.kanbanboards.view |
| GET | /kanbanboards/:id |
Single record | pm.kanbanboards.view |
| POST | /kanbanboards |
Create new record | pm.kanbanboards.new |
| PUT | /kanbanboards |
Update record | pm.kanbanboards.edit |
| DELETE | /kanbanboards/:id |
Delete record | pm.kanbanboards.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.pm.kanbanBoards.find().limit(10).exec();
// Single record
const one = await ay.pm.kanbanBoards.findById('OBJECT_ID').exec();
// Create
const created = await ay.pm.kanbanBoards.create({ name: 'Foo' });