Create enterprise SSO verification
Create a new EnterpriseSSO verification record and return the provider's authorization URI for the given connector.
Path parameters
-
The unique identifier of the connector.
Body Required
-
The state parameter to pass to the SSO connector.
-
The URI to redirect the user after the SSO authorization is completed.
POST /api/experience/verification/sso/{connectorId}/authorization-uri
curl \
-X POST https://[tenant_id].logto.app/api/experience/verification/sso/{connectorId}/authorization-uri \
-H "Content-Type: application/json" \
-d '{"state":"string","redirectUri":"string"}'
Request examples
{
"state": "string",
"redirectUri": "string"
}
Response examples (200)
{
"authorizationUri": "string",
"verificationId": "string"
}