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

created_atstring date-time

CreatedAt is a helper struct field for gobuffalo.pop.

errorsobject[] required

Errors in the container

idstring uuid4 required
updated_atstring date-time

UpdatedAt is a helper struct field for gobuffalo.pop.

Example response

{
  "updated_at": "2000-01-23T04:56:07.000+00:00",
  "created_at": "2000-01-23T04:56:07.000+00:00",
  "id": "id",
  "errors": [
    "{}",
    "{}"
  ]
}

Changes