ZITADEL Docs
APIsCore ResourcesV1Instance Lifecycle

ListFailedEvents

Returns event descriptions which cannot be processed. It's possible that some events need some retries. For example if the SMTP-API wasn't able to send an email at the first time

POST
/failedevents/_search

Request Body

application/json

[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://loading/failedevents/_search" \  -H "Content-Type: application/json" \  -d '{}'
{
  "result": [
    {
      "database": "string",
      "viewName": "string",
      "failedSequence": 0,
      "failureCount": 0,
      "errorMessage": "string",
      "lastFailed": "1s"
    }
  ]
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?