← Personal API
Journals
Singular: Journal — Base URL: https://personal-api.ayoune.app — Access: CRUD
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": "6a6198147c8b935933cf71a2",
"_user": "6045f4d25704710012485569",
"name": "ENTHUSIASTIC_CRIMSON_EETH KOTH",
"createdBy": "6045f4d25704710012485569",
"createdAt": "2026-07-23T04:27:00.120Z",
"updatedAt": "2026-07-23T04:27:00.120Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://personal-api.ayoune.app/journals/6a6198147c8b935933cf71a2",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "APIs",
"title": "MODEL_API",
"href": "https://api.ayoune.app/config/apis/6045f4d25704710012485569",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "config.apis"
}
],
"relations": [
{
"rel": "APIs",
"title": "MODEL_API",
"href": "https://api.ayoune.app/config/apis",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "config.apis"
}
],
"debugId": "6a6198147c8b935933cf71cd",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_JOURNAL",
"href": "https://api.ayoune.app/personal/journals/6a6198147c8b935933cf71a2/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_JOURNAL",
"href": "https://api.ayoune.app/personal/journals/6a6198147c8b935933cf71a2/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.1.0",
"core": "2026.234.0"
},
"rateLimit": {
"limit": "2500",
"remaining": "2458",
"reset": "1784784412",
"resetDate": "Thu Jul 23 2026"
},
"responseTime": 20.748119,
"code": 200,
"status": "success",
"error": false
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /journals |
List with filters/pagination | personal.journals.view |
| GET | /journals/:id |
Single record | personal.journals.view |
| POST | /journals |
Create new record | personal.journals.new |
| PUT | /journals |
Update record | personal.journals.edit |
| DELETE | /journals/:id |
Delete record | personal.journals.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.personal.journals.find().limit(10).exec();
// Single record
const one = await ay.personal.journals.findById('OBJECT_ID').exec();
// Create
const created = await ay.personal.journals.create({ name: 'Foo' });