aYOUne
← Buchhaltung API

Budgets

Singular: Budget — Base-URL: https://accounting-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": "6a7d336e665f047fe29d7ac5",
    "year": "2018",
    "budget": 0,
    "used": 0,
    "jan": 0,
    "janUsed": 0,
    "feb": 0,
    "febUsed": 0,
    "mar": 0,
    "marUsed": 0,
    "apr": 0,
    "aprUsed": 0,
    "mai": 0,
    "maiUsed": 0,
    "jun": 0,
    "junUsed": 0,
    "jul": 0,
    "julUsed": 0,
    "aug": 0,
    "augUsed": 0,
    "sep": 0,
    "sepUsed": 0,
    "oct": 0,
    "octUsed": 0,
    "nov": 0,
    "novUsed": 0,
    "dec": 0,
    "decUsed": 0,
    "createdBy": "6045f4d25704710012485569",
    "createdAt": "2026-08-13T03:01:02.441Z",
    "updatedAt": "2026-08-13T03:01:02.441Z"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://accounting-api.ayoune.app/budgets/6a7d336e665f047fe29d7ac5",
        "method": "get",
        "title": "GET",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "relations": [
      {
        "rel": "CostCenters",
        "title": "MODEL_COSTCENTER",
        "href": "https://api.ayoune.app/accounting/costcenters",
        "method": "get",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ],
        "right": "accounting.costcenters"
      }
    ],
    "debugId": "6a8e5cee31bfb0d2118d2846",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_BUDGET",
        "href": "https://api.ayoune.app/accounting/budgets/6a7d336e665f047fe29d7ac5/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_BUDGET",
        "href": "https://api.ayoune.app/accounting/budgets/6a7d336e665f047fe29d7ac5/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.30.0",
      "core": "2026.296.0"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2469",
      "reset": "1787718388",
      "resetDate": "Wed Aug 26 2026"
    },
    "responseTime": 221.643056,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpunkte

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

SDK

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

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

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

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

Weiterführend