Interface ExchangeSIWBBAuthorizationCodePayload

interface ExchangeSIWBBAuthorizationCodePayload {
    client_id?: string;
    client_secret?: string;
    code?: string;
    grant_type?: "authorization_code" | "refresh_token";
    options?: VerifySIWBBOptions;
    redirect_uri?: string;
    refresh_token?: string;
}

Properties

client_id?: string

Client ID for the SIWBB request.

client_secret?: string

Client secret for the SIWBB request.

code?: string

The SIWBB request.

grant_type?: "authorization_code" | "refresh_token"

The grant type for the SIWBB request.

We attempt to verify the current status with each request. You can provide additional options for verification here.

redirect_uri?: string

The redirect URI for the SIWBB request. Only required if the code was created with a redirect URI.

refresh_token?: string

The refresh token to use for the SIWBB request.