Default Application Dropdown Limited To 100 Applications In IDP-Initiated SSO Configuration
Last Updated:
Overview
This article explains the limitation where the Default Application dropdown menu in the Identity Provider (IdP)-Initiated Single Sign-On (SSO) configuration for a Security Assertion Markup Language (SAML) enterprise connection does not display applications beyond the first page.
Applies To
-
SAML Enterprise Connections
-
IdP-Initiated SSO
Cause
The application dropdown list within the Dashboard is limited to 100 applications. Applications that fall outside the first 100 entries, based on creation date and alphabetical sorting, are not displayed in the list.
Solution
The Management API can be used to configure an application as the default, regardless of whether it appears in the dropdown menu.
-
Retrieve the Connection ID from the top of the connection settings page in the Dashboard.
-
Retrieve the Client ID of the application to be set as the default.
-
Send a PATCH request to the Update a connection endpoint (
/api/v2/connections/<connection_id>). -
Include the following JSON payload, replacing
<client_id>with the Client ID retrieved in step 2:{ "options": { "idp_initiated": { "client_id": "<client_id>", "client_protocol": "oauth2", "enabled": true } } } -
Set the
client_protocolbased on the application type:oauth2for OpenID Connect (OIDC) or standard web applications,samlpfor SAML applications, orwsfedfor WS-Federation.