aYOUne
← Affiliate API

ImageBannerCats

Singular: ImageBannerCat — Base-URL: https://affiliate-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": "6a62dbe9138b05b510db21a9",
    "cat": "-",
    "createdBy": "6045f4d25704710012485569",
    "createdAt": "2026-07-24T03:28:41.881Z",
    "updatedAt": "2026-07-24T03:28:41.881Z"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://affiliate-api.ayoune.app/imagebannercats/6a62dbe9138b05b510db21a9",
        "method": "get",
        "title": "GET",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "relations": [],
    "debugId": "6a8e5f4bd193abb7a0e15649",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_IMAGEBANNERCAT",
        "href": "https://api.ayoune.app/affiliate/imagebannercats/6a62dbe9138b05b510db21a9/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_IMAGEBANNERCAT",
        "href": "https://api.ayoune.app/affiliate/imagebannercats/6a62dbe9138b05b510db21a9/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.6.5",
      "core": "2026.287.1"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2441",
      "reset": "1787718987",
      "resetDate": "Wed Aug 26 2026"
    },
    "responseTime": 82.027158,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpunkte

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

SDK

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

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

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

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

Weiterführend