> ## Documentation Index
> Fetch the complete documentation index at: https://docs.causeloop.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Sso Providers

> List configured SSO providers for the authenticated workspace.

Returns the list of providers (enabled or not) with their metadata.
Enabled providers are surfaced as clickable buttons on the sign-in screen;
disabled ones are shown as unavailable chips.



## OpenAPI

````yaml /openapi.json get /v1/auth/sso/providers
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/auth/sso/providers:
    get:
      tags:
        - auth
      summary: List Sso Providers
      description: >-
        List configured SSO providers for the authenticated workspace.


        Returns the list of providers (enabled or not) with their metadata.

        Enabled providers are surfaced as clickable buttons on the sign-in
        screen;

        disabled ones are shown as unavailable chips.
      operationId: list_sso_providers_v1_auth_sso_providers_get
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response List Sso Providers V1 Auth Sso Providers Get
                type: object
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````