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