v0alpha1

Get 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:

?id=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

idstring required

Error is the error's ID

Response

selfServiceError

created_atstring date-time

CreatedAt is a helper struct field for gobuffalo.pop.

errorobject
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",
  "error": "{}"
}

Changes