aYOUne
← Project Management API

Spaces

Singular: Space — Base URL: https://pm-api.ayoune.app — Access: CRUD — Machine-readable spec (JSON · YAML)

play_circle Try it now beta

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": "6aa236756d8b8aabbb7bb367",
    "_channels": [],
    "_members": [],
    "name": "ESTABLISHED_AMARANTH_LAMA SU",
    "createdBy": "6045f4d25704710012485569",
    "shares": [],
    "createdAt": "2026-09-10T04:47:49.424Z",
    "updatedAt": "2026-09-10T04:47:49.761Z",
    "modifiedBy": "6045f4d25704710012485569"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://pm-api.ayoune.app/spaces/6aa236756d8b8aabbb7bb367",
        "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": "6aa236756d8b8aabbb7bb3ca",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_SPACE",
        "href": "https://api.ayoune.app/pm/spaces/6aa236756d8b8aabbb7bb367/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_SPACE",
        "href": "https://api.ayoune.app/pm/spaces/6aa236756d8b8aabbb7bb367",
        "method": "delete",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.73.0",
      "core": "2026.334.1"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2050",
      "reset": "1789019235",
      "resetDate": "Thu Sep 10 2026"
    },
    "responseTime": 52.037836,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpoints

MethodPathDescriptionRight
GET /spaces List with filters/pagination pm.spaces.view
GET /spaces/:id Single record pm.spaces.view
POST /spaces Create new record pm.spaces.new
PUT /spaces Update record pm.spaces.edit
DELETE /spaces/:id Delete record pm.spaces.delete

SDK

import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');

// List all
const list = await ay.pm.spaces.find().limit(10).exec();

// Single record
const one = await ay.pm.spaces.findById('OBJECT_ID').exec();

// Create
const created = await ay.pm.spaces.create({ name: 'Foo' });

See also