List 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.
GET /api/sso-connectors
curl \
-X GET https://[tenant_id].logto.app/api/sso-connectors \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"tenantId": "string",
"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": {}
}
]