Skip to main content

Get User-Flow Errors

GET 

https://accounts.<domain>/auth/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.

Request

Query Parameters

    id stringrequired

    Error is the error's ID

Responses

flowError

Schema
    created_atstring<date-time>

    CreatedAt is a helper struct field for gobuffalo.pop.

    errorobject
    idstring<uuid>required

    ID of the error container.

    updated_atstring<date-time>

    UpdatedAt is a helper struct field for gobuffalo.pop.

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://accounts.<domain>/auth/self-service/errors");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://accounts.<domain>
Parameters
— queryrequired