Resolve Identity
POST
/v1/identity/resolve
const url = 'https://example.com/v1/identity/resolve';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"claims":{},"idp":"example","tenant":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/v1/identity/resolve \ --header 'Content-Type: application/json' \ --data '{ "claims": {}, "idp": "example", "tenant": "example" }'Resolve a login-token claim set against the SCIM directory under source precedence. SCIM is authoritative; token contributes session context + surfaces conflicts. A stale token never reactivates an inactive employee.
Request Body required
Section titled “Request Body required ” Media type application/json
ResolveIdentityRequest
A decoded login-token claim set to resolve against the SCIM directory under
source precedence. idp/tenant are optional hints; otherwise the token
iss is matched through the issuer map. (MVP: claims are trusted edge input —
no JWT signature verification; deferred to BACKLOG.)
object
Example generated
{ "claims": {}, "idp": "example", "tenant": "example"}Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
exampleValidation Error
Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}