Reference / Dashboard

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 /v1/dashboard/sso/resolve
End-user session operationId: resolve

Authorization

Called from the browser with the publishable application id (x-application-id); the access token lives in memory.

Request body · required

  • email string 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 request
POST https://api.identrahq.com/v1/dashboard/sso/resolve

Request body

application/json