Skip to main content
POST
/
identity
/
verify
Verify user identity (HMAC)
curl --request POST \
  --url https://platform.agentictrust.com/api/v1/identity/verify \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "userId": "<string>",
  "hmac": "<string>",
  "email": "jsmith@example.com",
  "name": "<string>"
}
'
{
  "verified": true
}

Authorizations

x-api-key
string
header
required

API key in lum_pk_* format. Pass via x-api-key header or Authorization: Bearer <key>.

Body

application/json
userId
string
required

External user identifier.

hmac
string
required

Hex-encoded HMAC-SHA256 signature.

email
string<email>

Optional user email.

name
string

Optional user display name.

Response

HMAC valid. End user upserted.

verified
boolean
Example:

true