Verify enterprise SSO verification
Verify the SSO authorization response data and get the user's identity from the SSO provider.
Path parameters
-
connectorId
string Required The unique identifier of the connector.
Body
Required
-
connectorData
object Required Arbitrary data returned by the SSO provider to complete the verification process.
-
verificationId
string Required 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 \
--request POST 'https://[tenant_id].logto.app/api/experience/verification/sso/{connectorId}/verify' \
--header "Content-Type: application/json" \
--data '{"connectorData":{},"verificationId":"string"}'
Request examples
{
"connectorData": {},
"verificationId": "string"
}
Response examples (200)
{
"verificationId": "string"
}