aYOUne
← Personal API

JournalEntries

Singular: JournalEntry — Base URL: https://personal-api.ayoune.app — Access: CRUD — Machine-readable spec (JSON · YAML)

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": "6aa385047cfed5627209a75d",
    "_user": "6045f4d25704710012485569",
    "description": "BAD_COFFEE_FINIS VALORUM",
    "createdBy": "6045f4d25704710012485569",
    "createdAt": "2026-09-11T04:35:16.805Z",
    "updatedAt": "2026-09-11T04:35:16.805Z"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://personal-api.ayoune.app/journalentries/6aa385047cfed5627209a75d",
        "method": "get",
        "title": "GET",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "relations": [
      {
        "rel": "Journals",
        "title": "MODEL_JOURNAL",
        "href": "https://api.ayoune.app/personal/journals",
        "method": "get",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ],
        "right": "personal.journals"
      }
    ],
    "debugId": "6aa385067cfed5627209a7ce",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_JOURNALENTRY",
        "href": "https://api.ayoune.app/personal/journalentries/6aa385047cfed5627209a75d/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_JOURNALENTRY",
        "href": "https://api.ayoune.app/personal/journalentries/6aa385047cfed5627209a75d/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.1.2",
      "core": "2026.277.0"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2474",
      "reset": "1789104909",
      "resetDate": "Fri Sep 11 2026"
    },
    "responseTime": 207.842363,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpoints

MethodPathDescriptionRight
GET /journalentries List with filters/pagination personal.journalentries.view
GET /journalentries/:id Single record personal.journalentries.view
POST /journalentries Create new record personal.journalentries.new
PUT /journalentries Update record personal.journalentries.edit
DELETE /journalentries/:id Delete record personal.journalentries.delete

SDK

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

// List all
const list = await ay.personal.journalEntries.find().limit(10).exec();

// Single record
const one = await ay.personal.journalEntries.findById('OBJECT_ID').exec();

// Create
const created = await ay.personal.journalEntries.create({ name: 'Foo' });

See also