map a work email to its account's SSO connection. Returns `{ sso: false }` when the email's domain isn't verified / has no enabled connection (no account-existence signal beyond what a login page already leaks).
POST
End-user session operationId: resolve/v1/dashboard/sso/resolve Authorization
Called from the browser with the publishable application id (x-application-id); the access token lives in memory.
Request body · required
emailstring required
Responses
200 Resolution
{
"data": {},
"error": {
"code": "string",
"message": "string"
},
"meta": {
"timestamp": "string"
},
"success": false
}Request
curl -X POST "https://api.identrahq.com/v1/dashboard/sso/resolve" \
-H "Content-Type: application/json" \
-d '{
"email": "string"
}'Try it
live requestPOST
https://api.identrahq.com/v1/dashboard/sso/resolve