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

# Resolve enterprise SSO connectors by email domain

> Returns SSO connectors configured for the email domain. Used by the login page to bypass the SSO email screen.



## OpenAPI

````yaml get /auth/sso/connectors
openapi: 3.0.0
info:
  title: Cybedefend API
  description: >-
    CybeDefend is an advanced API for application security analysis. Key
    features include OAuth 2.0 authentication, user/organization/project
    management, and REBAC-based permissions. It excels in static, dynamic, and
    IaC security analyses (SAST, DAST, IaC, etc.).
  version: '1.0'
  contact: {}
servers:
  - url: https://api-eu.cybedefend.com
    description: EU
  - url: https://api-us.cybedefend.com
    description: US
security: []
tags: []
paths:
  /auth/sso/connectors:
    get:
      tags:
        - SSO
      summary: Resolve enterprise SSO connectors by email domain
      description: >-
        Returns SSO connectors configured for the email domain. Used by the
        login page to bypass the SSO email screen.
      operationId: SsoController_resolveConnectors
      parameters:
        - name: email
          required: true
          in: query
          schema:
            type: string
      responses:
        '200':
          description: List of matching SSO connectors

````