aYOUne
← Buchhaltung API

Budgets

Singular: Budget — Base-URL: https://accounting-api.ayoune.app — Zugriff: CRUD

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": "65e07ae811cb6213d99d03b8",
    "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": "2024-02-29T12:39:04.825Z",
    "updatedAt": "2024-02-29T12:39:04.825Z"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://accounting-api.ayoune.app/budgets/65e07ae811cb6213d99d03b8",
        "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": "6a62da4832b48bf3f8122e83",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_BUDGET",
        "href": "https://api.ayoune.app/accounting/budgets/65e07ae811cb6213d99d03b8/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_BUDGET",
        "href": "https://api.ayoune.app/accounting/budgets/65e07ae811cb6213d99d03b8/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.22.5",
      "core": "2026.257.1"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2479",
      "reset": "1784866900",
      "resetDate": "Fri Jul 24 2026"
    },
    "responseTime": 194.046239,
    "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