Webhooks

Eigene Abos auflisten

gethttps://open-api.mynextdays.com/v1/webhooks

Die Abos DIESES Zugangs.

Bewusst nicht alle Abos des Betriebs: ein Zugang soll nicht sehen, wohin ein anderer Zugang ausliefert — das wäre eine Landkarte fremder Systeme.

Antworten

200Successful Response
activebooleanpflicht
created_atdate-timepflicht
eventsarray of stringpflicht
failure_countintegerStandard 0
idstringpflicht
last_errorstring
last_success_atdate-time
property_idsarray of stringpflicht
urlstringpflicht
422Validation Error
detailarray of ValidationError
ctxContext
inputInput
locarray of string | integerpflicht
msgstringpflicht
typestringpflicht

Sprache

Nur in diesem Browser, nur für „Ausprobieren“ — der Wert wird nicht gespeichert und nicht an uns geschickt.

Anfrage
curl -X GET 'https://open-api.mynextdays.com/v1/webhooks' \
  -H 'Authorization: Bearer <access_token>'

Ohne Token antwortet der Aufruf mit 401 — das ist der erwartete Weg.

Beispiel
[
  {
    "id": "…",
    "url": "…",
    "events": [
      "…"
    ],
    "property_ids": [
      "…"
    ],
    "active": false,
    "created_at": "2026-09-10T14:00:00Z"
  }
]