Interface LogoutUrlOptions

Options for the logout endpoint

interface LogoutUrlOptions {
    clientId?: string;
    federated?: boolean;
    returnTo?: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Custom parameters to send to the logout endpoint

Properties

clientId?: string

The client identifier of the one requesting the logout

federated?: boolean

Whether the logout should include removing session for federated IdP.

returnTo?: string

URL where the user is redirected to after logout. It must be declared in you Auth0 Dashboard

Generated using TypeDoc