MonoCloud Authentication SDK
    Preparing search index...

    Route configuration for MonoCloud authentication handlers.

    These routes define the internal application endpoints used by the SDK to process authentication flows such as sign-in, callback handling, sign-out, and user profile retrieval.

    You typically do not need to change these values unless you want to customize your application's authentication URLs.

    When customizing routes, ensure the corresponding URLs are also configured in your MonoCloud Dashboard and exposed to the client using the matching environment variables.

    interface MonoCloudRoutes {
        backChannelLogout: string;
        callback: string;
        signIn: string;
        signOut: string;
        userInfo: string;
    }
    Index

    Properties

    backChannelLogout: string

    Route that handles OpenID Connect back-channel logout requests initiated by MonoCloud.

    '/api/auth/backchannel-logout'
    
    callback: string

    Route that receives the authorization callback from MonoCloud after a successful authentication.

    '/api/auth/callback'
    
    signIn: string

    Route used to initiate the sign-in flow.

    '/api/auth/signin'
    
    signOut: string

    Route used to initiate the sign-out flow.

    '/api/auth/signout'
    
    userInfo: string

    Route that exposes the authenticated user's profile information.

    '/api/auth/userinfo'