# List SSO connections

<Heading
  as={"h1"}
  className={"openapi__heading"}
  children={"List SSO connections"}
>
</Heading>

<MethodEndpoint
  method={"get"}
  path={"/api/v1/organization/{organization_id}/sso-connections"}
  context={"endpoint"}
>
  
</MethodEndpoint>

Returns all SSO connections configured for the organization.

<Heading
  id={"request"}
  as={"h2"}
  className={"openapi-tabs__heading"}
  children={"Request"}
>
</Heading>

<ParamsDetails
  parameters={[{"description":"Unique identifier of the organization that owns the SSO connection.","in":"path","name":"organization_id","required":true,"schema":{"description":"Unique identifier of the organization that owns the SSO connection.","format":"uuid","title":"Organization Id","type":"string"}}]}
>
  
</ParamsDetails>

<RequestSchema
  title={"Body"}
  body={undefined}
>
  
</RequestSchema>

<StatusCodes
  id={undefined}
  label={undefined}
  responses={{"200":{"content":{"application/json":{"schema":{"items":{"properties":{"callback_url":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Redirect/callback URL the admin must register at the OIDC identity provider. Unique per connection and populated only after creation. Null for SAML connections.","title":"Callback URL"},"config":{"additionalProperties":true,"description":"Non-secret protocol configuration echoed back for the UI (discovered/echoed URLs, issuer, binding, and the callback/ACS URL).","title":"Protocol Configuration","type":"object"},"created_at":{"description":"Timestamp when the connection was created, in ISO 8601 format.","format":"date-time","title":"Created At","type":"string"},"display_name":{"description":"Human-readable name for the SSO connection. Must be unique within the organization.","title":"Display Name","type":"string"},"domains":{"description":"Email domains routed to this connection at login. Public/free email providers (for example 'gmail.com') are rejected, and each domain may be claimed by only one connection.","items":{"type":"string"},"title":"Email Domains","type":"array"},"enabled":{"description":"Whether the connection accepts logins. Disabled connections are configured but not active.","title":"Enabled","type":"boolean"},"organization_id":{"description":"Unique identifier of the organization that owns the SSO connection.","format":"uuid","title":"Organization ID","type":"string"},"provider_type":{"description":"SSO protocol the connection uses: 'OIDC' or 'SAML'.","title":"Provider Type","type":"string"},"sso_connection_id":{"description":"Unique identifier of the SSO connection.","format":"uuid","title":"SSO Connection ID","type":"string"},"vendor":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Predefined OIDC identity-provider vendor (uses Authentik's dedicated provider type). Omit for a generic OIDC IdP. Ignored for SAML.","title":"OIDC Vendor"}},"required":["sso_connection_id","organization_id","display_name","provider_type","enabled","domains","config","created_at"],"title":"SSOConnectionResponse","type":"object"},"title":"Response List Sso Connections Api V1 Organization  Organization Id  Sso Connections Get","type":"array"}}},"description":"Successful Response"},"422":{"content":{"application/json":{"schema":{"properties":{"detail":{"items":{"properties":{"ctx":{"title":"Context","type":"object"},"input":{"title":"Input"},"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"title":"Location","type":"array"},"msg":{"title":"Message","type":"string"},"type":{"title":"Error Type","type":"string"}},"required":["loc","msg","type"],"title":"ValidationError","type":"object"},"title":"Detail","type":"array"}},"title":"HTTPValidationError","type":"object"}}},"description":"Validation Error"}}}
>
  
</StatusCodes>
