← Monitoring API
CheckResults
Singular: CheckResult — Base URL: https://monitoring-api.ayoune.app — Access: CRUD — Machine-readable spec (JSON · YAML)
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": "6a97a39e41b2d46255a15724",
"isDraft": true,
"createdBy": "6045f4d25704710012485569",
"createdAt": "2026-09-02T04:18:38.177Z",
"updatedAt": "2026-09-02T04:18:38.177Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://monitoring-api.ayoune.app/checkresults/6a97a39e41b2d46255a15724",
"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": "6a97a39e41b2d46255a15756",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_CHECKRESULT",
"href": "https://api.ayoune.app/monitoring/checkresults/6a97a39e41b2d46255a15724/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_CHECKRESULT",
"href": "https://api.ayoune.app/monitoring/checkresults/6a97a39e41b2d46255a15724",
"method": "delete",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.39.1",
"core": "2026.326.0"
},
"rateLimit": {
"limit": "2500",
"remaining": "2435",
"reset": "1788326303",
"resetDate": "Wed Sep 02 2026"
},
"responseTime": 486.869642,
"code": 200,
"status": "success",
"error": false
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /checkresults |
List with filters/pagination | monitoring.checkresults.view |
| GET | /checkresults/:id |
Single record | monitoring.checkresults.view |
| POST | /checkresults |
Create new record | monitoring.checkresults.new |
| PUT | /checkresults |
Update record | monitoring.checkresults.edit |
| DELETE | /checkresults/:id |
Delete record | monitoring.checkresults.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.monitoring.checkResults.find().limit(10).exec();
// Single record
const one = await ay.monitoring.checkResults.findById('OBJECT_ID').exec();
// Create
const created = await ay.monitoring.checkResults.create({ name: 'Foo' });