aYOUne
← CRM API

Documents

Singular: Document — Base-URL: https://crm-api.ayoune.app — Zugriff: CRUD

play_circle Jetzt ausprobieren beta

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": "65e0b092121b7d48fe1583e1",
    "tags": [],
    "editor": "6045f4d25704710012485569",
    "team": [],
    "allowedFor": [],
    "watchers": [],
    "contributors": [],
    "consumerContributors": [],
    "createdBy": "6045f4d25704710012485569",
    "versions": [],
    "comments": [],
    "createdAt": "2024-02-29T16:28:02.619Z",
    "updatedAt": "2024-02-29T16:28:02.619Z",
    "shortID": "BGPRMUT"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://crm-api.ayoune.app/documents/65e0b092121b7d48fe1583e1",
        "method": "get",
        "title": "GET",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "relations": [
      {
        "rel": "Consumers",
        "title": "MODEL_CONSUMER",
        "href": "https://api.ayoune.app/crm/consumers",
        "method": "get",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ],
        "right": "crm.consumers"
      },
      {
        "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": "6a62df6dd98fe96440cc8b95",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_DOCUMENT",
        "href": "https://api.ayoune.app/crm/documents/65e0b092121b7d48fe1583e1/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_DOCUMENT",
        "href": "https://api.ayoune.app/crm/documents/65e0b092121b7d48fe1583e1/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.46.1",
      "core": "2026.258.0"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2391",
      "reset": "1784868196",
      "resetDate": "Fri Jul 24 2026"
    },
    "responseTime": 38.901089,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpunkte

MethodePathBeschreibungRight
GET /documents Liste mit Filtern/Paginierung crm.documents.view
GET /documents/:id Einzelner Datensatz crm.documents.view
POST /documents Neuen Datensatz erstellen crm.documents.new
PUT /documents Datensatz aktualisieren crm.documents.edit
DELETE /documents/:id Datensatz löschen crm.documents.delete

SDK

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

// Alle abrufen
const list = await ay.crm.documents.find().limit(10).exec();

// Einzelnen Datensatz
const one = await ay.crm.documents.findById('OBJECT_ID').exec();

// Erstellen
const created = await ay.crm.documents.create({ name: 'Foo' });

Weiterführend