public
admin

Get User-Facing Self-Service Errors

This endpoint returns the error associated with a user-facing self service errors.

This endpoint supports stub values to help you implement the error UI:

?error=stub:500 - returns a stub 500 (Internal Server Error) error.

More information can be found at Ory Kratos User User Facing Error Documentation.

get/self-service/errors

Query parameters

errorstring required

Error is the container's ID

Response

User-facing error response

errorsobject[] required

Errors in the container

idstring uuid4 required

Example response

{
  "id": "id",
  "errors": [
    "{}",
    "{}"
  ]
}

Changes