Skip to main content
POST
/
_webhooks
/
identity
Identity Event
curl --request POST \
  --url https://api.example.com/_webhooks/identity \
  --header 'Content-Type: application/json' \
  --data '
{
  "eventType": "identity",
  "requestId": "<string>",
  "issuerDid": "<string>",
  "user": {
    "contact": "<string>",
    "id": "<string>",
    "internalId": "<string>"
  },
  "api_version": "<string>",
  "decision": {
    "success": true,
    "isFraud": true,
    "date": "2023-11-07T05:31:56Z",
    "riskScore": 123,
    "message": "<string>",
    "outcome": "<string>"
  },
  "internalId": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://humanos.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Headers

API-Version
string

Pin responses to a specific API version (YYYY-MM-DD). When omitted, defaults to the version stored in your issuer config or today's date.

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2026-03-03"

Body

application/json
eventType
enum<string>
required
Available options:
identity
requestId
string
required
issuerDid
string
required
user
object
required
api_version
string
required
decision
object
required
internalId
string
identity
object

Response

200

Webhook received successfully