Interface SwitchCapacityUrlConfig

Configuration for the 'switch capacity' URL when separate URLs are needed for targeted identity switching (with loginHint) and IdP-based identity selection (without loginHint).

interface SwitchCapacityUrlConfig {
    fallback: string;
    targeted: string;
}

Properties

Properties

fallback: string

URL used when no loginHint is available. Redirects to the IdP's identity selection screen where the user manually picks the identity to switch to.

targeted: string

URL for targeted identity switching when a loginHint is available. The loginHint is appended as a login_hint query parameter, enabling direct identity switching without passing through the IdP selection screens.