Verifies a JWT identity token signed with the project’s HMAC secret (HS256). On success, the end user is upserted from the token claims (sub required; email and name optional).
sub
email
name
cURL
curl --request POST \ --url https://platform.agentictrust.com/api/v1/identity/identify \ --header 'Content-Type: application/json' \ --header 'x-api-key: <api-key>' \ --data ' { "token": "<string>" } '
{ "verified": true, "user": { "id": "<string>", "email": "<string>", "name": "<string>" } }
API key in lum_pk_* format. Pass via x-api-key header or Authorization: Bearer <key>.
lum_pk_*
x-api-key
Authorization: Bearer <key>
JWT signed with the project's HMAC secret.
Token valid. End user upserted.
true
Show child attributes