Skip to main content

List Failed Events​

Returns a list of events that could not be proceeded in the views/projections. Some events need several retries till they succeed. For example, if the SMTP-API wasn't able to send an email the first time.

Responses

Events which were not processed by the views


Schema
    result object[]
  • Array [
  • database string
    viewName string
    failedSequence uint64
    failureCount uint64
    errorMessage string
    lastFailed date-time

    The timestamp the failure last occurred

  • ]
POST /failedevents/_search

Authorization

name: OAuth2type: oauth2scopes: openid,urn:zitadel:iam:org:project:id:zitadel:audflows: {
  "authorizationCode": {
    "authorizationUrl": "$CUSTOM-DOMAIN/oauth/v2/authorize",
    "tokenUrl": "$CUSTOM-DOMAIN/oauth/v2/token",
    "scopes": {
      "openid": "openid",
      "urn:zitadel:iam:org:project:id:zitadel:aud": "urn:zitadel:iam:org:project:id:zitadel:aud"
    }
  }
}

Request

Base URL
https://$CUSTOM-DOMAIN/admin/v1
Bearer Token
Accept
curl / cURL
curl -L -X POST 'https://$CUSTOM-DOMAIN/admin/v1/failedevents/_search' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'