Create a social verification record
Create a social verification record and return the authorization URI.
POST /api/verifications/social
curl \
-X POST https://[tenant_id].logto.app/api/verifications/social \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"state":"string","redirectUri":"string","connectorId":"string"}'
Request examples
{
"state": "string",
"redirectUri": "string",
"connectorId": "string"
}
Response examples (201)
{
"verificationRecordId": "string",
"authorizationUri": "string",
"expiresAt": "string"
}