List SSO connectors

GET /api/sso-connectors

Get SSO connectors with pagination. In addition to the raw SSO connector data, a copy of fetched or parsed IdP configs and a copy of connector provider's data will be attached.

Query parameters

  • page integer

    Page number (starts from 1).

    Minimum value is 1. Default value is 1.

  • page_size integer

    Entries per page.

    Minimum value is 1. Default value is 20.

Responses

GET /api/sso-connectors
curl \
 -X GET https://[tenant_id].logto.app/api/sso-connectors
Response examples (200)
[
  {
    "id": "string",
    "providerName": "OIDC",
    "connectorName": "string",
    "config": {},
    "domains": [
      "string"
    ],
    "branding": {
      "displayName": "string",
      "logo": "string",
      "darkLogo": "string"
    },
    "syncProfile": true,
    "createdAt": 42.0,
    "name": "string",
    "providerType": "oidc",
    "providerLogo": "string",
    "providerLogoDark": "string",
    "providerConfig": {
      "key": null
    }
  }
]