SSOProviderService#
- class SSOProviderService[source]#
- get_all(*, page_size=20)[source]#
Get all the SSO providers.
- Parameters:
page_size (
int
) – The size of a single page, maximum is 50.- Returns:
The SSO providers, paginated.
- Return type:
Response[Saml2Provider]
- create(json_body)[source]#
Register a new SSO Provider in this instance.
Users will be able to login using the registered provider.
The request should contain two files. One named json containing the json data explained below and one named logo containing the backup logo.
- Parameters:
json_body (
CreateSSOProviderData
) – The body of the request. SeeCreateSSOProviderData
for information about the possible fields. You can provide this data as aCreateSSOProviderData
or as a dictionary.self (SSOProviderService[AuthenticatedClient]) –
- Returns:
The just created provider.
- Return type: