Verify enterprise SSO verification
Verify the SSO authorization response data and get the user's identity from the SSO provider.
Path parameters
-
The unique identifier of the connector.
Body Required
-
Arbitrary data returned by the SSO provider to complete the verification process.
-
The ID of the EnterpriseSSO verification record.
Responses
-
200 application/json
The SSO authorization response has been successfully verified.
-
The SSO authorization response is invalid or cannot be verified.
-
The verification record or the SSO connector is not found.
-
Connector error. Failed to verify the SSO authorization response or fetch the user info from the SSO provider.
POST /api/experience/verification/sso/{connectorId}/verify
curl \
-X POST https://[tenant_id].logto.app/api/experience/verification/sso/{connectorId}/verify \
-H "Content-Type: application/json" \
-d '{"connectorData":{},"verificationId":"string"}'
Request examples
{
"connectorData": {},
"verificationId": "string"
}
Response examples (200)
{
"verificationId": "string"
}