Get Active Identity Providers
Get the current active identity providers for the requested context. This can be the instance or an organization. In case of an organization, the returned identity providers will fall back to the active instance identity providers if not explicitly set on the organization.
Optionally, filter the identity providers by their allowed actions:
- creation_allowed: only return identity providers that are allowed for user creation
- linking_allowed: only return identity providers that are allowed for linking to existing users
- auto_creation: only return identity providers that are allowed for automatic user creation
- auto_linking: only return identity providers that are allowed for automatic linking to existing users
Required permissions:
policy.read
Query Parameters
Response Body
application/json
curl -X GET "https://loading/v2/settings/login/idps"{
"details": {
"totalResult": 0,
"processedSequence": 0,
"timestamp": "2023-01-15T01:30:15.01Z"
},
"identityProviders": [
{
"id": "string",
"name": "string",
"type": "IDENTITY_PROVIDER_TYPE_UNSPECIFIED",
"options": {
"isLinkingAllowed": true,
"isCreationAllowed": true,
"isAutoCreation": true,
"isAutoUpdate": true,
"autoLinking": "AUTO_LINKING_OPTION_UNSPECIFIED"
}
}
]
}Was this page helpful?
Delete Organization Settings
Delete Organization Settings: Delete the settings specific to an organization. Required permissions:
Get Branding Settings
Get Branding Settings: Get the current active branding settings for the requested context. This can be the instance or an organization. In case of an organization, the returned settings will fall back to the instance set...