# Lists registered SSO providers Endpoint: GET /v1/sso Version: V1 Security: authorization_code_with_pkce, client_credentials ## Query parameters: - `query` (string) Optional search term to filter providers by name or scheme. Example: "azure" - `page` (integer) The page number to retrieve (1-based). Example: 1 - `pageSize` (integer) The number of items per page. Example: 10 ## Response 200 fields (application/json): - `identityProviders` (array, required) The identity providers on this page. - `identityProviders.id` (integer, required) The internal identifier of the provider. - `identityProviders.provider` (string, required) The provider type name (e.g. Azure, Google). - `identityProviders.scheme` (string, required) The unique authentication scheme name. - `identityProviders.displayName` (string, required) The human-readable display name shown to users. - `identityProviders.enabled` (boolean, required) Indicates whether the provider is currently active. - `identityProviders.type` (string, required) The protocol type of the provider (e.g. oidc, saml2p). - `totalCount` (integer, required) Total number of identity providers across all pages. - `page` (integer, required) The current page number. - `pageSize` (integer, required) The number of items per page. ## Response 401 fields ## Response 403 fields