Interface OIDCResponse

The response required to be returned from the machine or human callback workflows' callback.

interface OIDCResponse {
    accessToken: string;
    expiresInSeconds?: number;
    refreshToken?: string;
}

Properties

accessToken: string

The OIDC access token.

expiresInSeconds?: number

The time when the access token expires. For future use.

refreshToken?: string

The refresh token, if applicable, to be used by the callback to request a new token from the issuer.