Interface AuthenticateResponse

A response returned after successfully authenticating.

interface AuthenticateResponse {
    message?: string;
    operation?: string;
    passkey?: Passkey;
    passkeyBindingToken?: string;
    redirectBundle?: string;
    redirectUrl: string;
}

Properties

message?: string

An optional displayable message defined by policy returned by the cloud on success.

operation?: string

If present, the operation being authenticated.

passkey?: Passkey

If present, the passkey used for authentication.

passkeyBindingToken?: string

A one-time-token that may be redeemed for a CredentialBindingLink.

redirectBundle?: string
redirectUrl: string

The redirect URL that originates from the /authorize call's redirect_uri parameter. The OAuth2 authorization code and the state parameter of the /authorize call are attached with the "code" and "state" parameters to this URL.