aYOUne
← Project Management API

Spaces

Singular: Space — Base URL: https://pm-api.ayoune.app — Access: CRUD

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": "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
  }
}

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