Create social verification
Create a new SocialVerification record and return the provider's authorization URI for the given connector.
POST /api/experience/verification/social/{connectorId}/authorization-uri
curl \
-X POST https://[tenant_id].logto.app/api/experience/verification/social/{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"
}