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

# Get a single SSO connection (secret masked)

> Get an SSO identity connection by id.



## OpenAPI

````yaml GET /orgs/{org_id}/identity-providers/{provider_id}
openapi: 3.1.0
info:
  title: Timbal Platform API
  description: Public API documentation for the Timbal platform
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.timbal.ai
    description: Production
  - url: https://api.dev.timbal.ai
    description: Development
security: []
tags:
  - name: ace
    description: Action Control Engine (ACE) operations
  - name: analytics
    description: Project analytics
  - name: billing
    description: Subscriptions, usage, and payment-related operations
  - name: content
    description: Re-sign stored content URLs
  - name: files
    description: File operations
  - name: iam
    description: IAM — actions, roles, users, and authorization introspection
  - name: k2
    description: Knowledge Bases v2 operations
  - name: orgs
    description: Organization operations
  - name: projects
    description: Project operations
  - name: runs
    description: Execution operations
  - name: templates
    description: Public project template catalog
  - name: users
    description: Authenticated user profile
paths:
  /orgs/{org_id}/identity-providers/{provider_id}:
    get:
      tags:
        - orgs
      description: Get an SSO identity connection by id.
      operationId: handler
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
        - name: provider_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Connection
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IdentityProviderView'
        '404':
          description: Not found
      security:
        - bearer_auth: []
components:
  schemas:
    IdentityProviderView:
      type: object
      description: Masked view of a connection. Never includes the client secret.
      required:
        - id
        - org_id
        - kind
        - provider_key
        - allowed_domains
        - client_secret_set
        - enabled
        - enforced
        - created_at
        - updated_at
      properties:
        allowed_domains:
          type: array
          items:
            type: string
        client_id:
          type:
            - string
            - 'null'
          description: OIDC client id. `null` for non-OIDC kinds.
        client_secret_set:
          type: boolean
          description: |-
            Whether a client secret is configured. The secret itself is never
            returned.
        created_at:
          type: integer
          format: int64
        default_role_id:
          type:
            - string
            - 'null'
          description: >-
            Catch-all role granted to JIT members with no matching group
            mapping.

            `null` = no catch-all role.
        display_name:
          type:
            - string
            - 'null'
        enabled:
          type: boolean
        enforced:
          type: boolean
          description: 'Read-only here: SSO enforcement isn''t configurable via the API yet.'
        groups_claim:
          type:
            - string
            - 'null'
        id:
          type: string
        issuer:
          type:
            - string
            - 'null'
          description: |-
            OIDC issuer. `null` for non-OIDC kinds (e.g. SAML), whose connection
            details live in kind-specific fields added when those kinds ship.
        kind:
          type: string
        org_id:
          type: string
        provider_key:
          type: string
        scopes:
          type:
            - string
            - 'null'
        updated_at:
          type: integer
          format: int64
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: >-
        Timbal API key. Obtain your API key from the Timbal platform settings.
        See [Authentication](/api-reference/authentication) for more
        information.

````