Get enabled SSO connectors by the given email's domain

GET /api/experience/sso-connectors

Extract the email domain from the provided email address. Returns all the enabled SSO connectors that match the email domain.

Query parameters

  • email string(email) Required

    The email address to find the enabled SSO connectors.

Responses

  • 200 application/json

    The enabled SSO connectors have been successfully retrieved.

    Hide response attribute Show response attribute object
    • connectorIds array[string] Required

      The list of enabled SSO connectorIds. Returns an empty array if no enabled SSO connectors are found.

  • The email address is invalid, can not extract a valid domain from it.

GET /api/experience/sso-connectors
curl \
 -X GET https://[tenant_id].logto.app/api/experience/sso-connectors?email=hello%40example.com
Response examples (200)
{
  "connectorIds": [
    "string"
  ]
}