Multi language support for SAML application using Universal Login

Hi @poornima.bal,

You can include the ui_locales query parameter in a login request to display the login page in that language.

For example:

https://{yourDomain}/authorize?
    response_type=code&
    client_id={yourClientId}&
    redirect_uri={https://yourApp/callback}&
    scope={scope}&
    audience={apiAudience}&
    state={state}&
    ui_locales={languageCode}

You can find the full list of language codes here.

And here are some helpful knowledge articles for your reference:

Thanks,
Rueben