aYOUne
← CRM API

Leads

Singular: Lead — Base-URL: https://crm-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": "65e0b0a3121b7d48fe1584a4",
    "title": "",
    "salutation": "",
    "first_name": "",
    "last_name": "",
    "email": "",
    "street": "",
    "zip": "",
    "city": "",
    "phone": "",
    "cell": "",
    "newsletter": false,
    "privacy": false,
    "createdBy": "6045f4d25704710012485569",
    "last_active": "2024-02-29T16:28:19.058Z",
    "createdAt": "2024-02-29T16:28:19.059Z",
    "updatedAt": "2024-02-29T16:28:19.059Z"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://crm-api.ayoune.app/leads/65e0b0a3121b7d48fe1584a4",
        "method": "get",
        "title": "GET",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "relations": [],
    "debugId": "6a62df78d98fe96440cc8f4e",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_LEAD",
        "href": "https://api.ayoune.app/crm/leads/65e0b0a3121b7d48fe1584a4/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_LEAD",
        "href": "https://api.ayoune.app/crm/leads/65e0b0a3121b7d48fe1584a4/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.46.1",
      "core": "2026.258.0"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2335",
      "reset": "1784868196",
      "resetDate": "Fri Jul 24 2026"
    },
    "responseTime": 50.663288,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpunkte

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

SDK

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

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

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

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

Weiterführend