PUT
/
account
/
{account_id}
curl --request PUT \
  --url https://api.sandbox.verisoul.ai/account/{account_id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "id": "<string>",
  "email": "<string>",
  "metadata": {}
}'
{
  "project_id": "<string>",
  "request_id": "<string>",
  "account": {
    "id": "<string>",
    "email": "<string>",
    "metadata": {},
    "group": "<string>"
  },
  "num_sessions": 123,
  "first_seen": "2023-11-07T05:31:56Z",
  "last_seen": "2023-11-07T05:31:56Z",
  "last_session": "<string>",
  "decision": "<string>",
  "account_score": 123,
  "bot": 123,
  "multiple_accounts": 123,
  "risk_signals": 123,
  "accounts_linked": 123,
  "country": "<string>",
  "lists": [
    "<string>"
  ],
  "unique_devices": {
    "1_day": 123,
    "7_day": 123
  },
  "unique_networks": {
    "1_day": 123,
    "7_day": 123
  },
  "email": {
    "email": "<string>",
    "personal": true,
    "disposable": true,
    "valid": true
  },
  "risk_signal_average": {
    "device_risk": 123,
    "proxy": 123,
    "vpn": 123,
    "datacenter": 123,
    "tor": 123,
    "spoofed_ip": 123,
    "recent_fraud_ip": 123,
    "impossible_travel": 123,
    "device_network_mismatch": 123
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

account_id
string
required

ID of the account to update

Body

application/json
Account information to update

The body is of type object.

Response

200
application/json
Updated account information

The response is of type object.