aYOUne
← Monitoring API

CheckResults

Singular: CheckResult — Base-URL: https://monitoring-api.ayoune.app — Zugriff: CRUD — Maschinenlesbare Beschreibung (JSON · YAML)

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": "6a701936b5bd9a20014b5c1c",
    "isDraft": true,
    "createdBy": "6045f4d25704710012485569",
    "createdAt": "2026-08-03T04:29:42.920Z",
    "updatedAt": "2026-08-03T04:29:42.920Z"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://monitoring-api.ayoune.app/checkresults/6a701936b5bd9a20014b5c1c",
        "method": "get",
        "title": "GET",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "relations": [
      {
        "rel": "Checks",
        "title": "MODEL_CHECK",
        "href": "https://api.ayoune.app/monitoring/checks",
        "method": "get",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ],
        "right": "monitoring.checks"
      }
    ],
    "debugId": "6a828bef6ffbda734fddd03a",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_CHECKRESULT",
        "href": "https://api.ayoune.app/monitoring/checkresults/6a701936b5bd9a20014b5c1c/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_CHECKRESULT",
        "href": "https://api.ayoune.app/monitoring/checkresults/6a701936b5bd9a20014b5c1c/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.34.6",
      "core": "2026.299.1"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2421",
      "reset": "1786943973",
      "resetDate": "Mon Aug 17 2026"
    },
    "responseTime": 214.546983,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpunkte

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

SDK

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

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

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

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

Weiterführend