Get Full User Info
Returns full information of a single user
GET
https://api.authento.io/v1/userinfo/full
Either id or address must be provided as a query parameter. Requires full permission to user information.
Query Parameters
String
user id
address
String
EVM compatible address
{
"success": true,
"result": {
"id": "khz3h1vqr0023ptxk3j8w0a78",
"type": "INDIVIDUAL",
"status": {
"basic": "VERIFIED",
"poa": "VERIFIED"
},
"basicInfo": {
"country": "AUT",
"nonUS": true,
"nonEU": false,
"eighteenPlus": true,
"pep": null
},
"fullInfo": {
"firstName": "Jason",
"firstNameEn": "Jason",
"middleName": "Timothy",
"middleNameEn": "Timothy",
"lastName": "Bourne",
"lastNameEn": "Bourne",
"idDocs": [
{
"docType": "ID_CARD",
"docSubtype": null,
"country": "HKG",
"number": null,
"validUntil": null
}
]
},
"addresses": [
{
"address": "0x4D1a9E606516a9588fe8B5753A6b69D53cE8E1AA",
"riskLevel": "LOW",
"riskTags": [],
"timeScanned": 1688552661.845,
"action": "WHITELISTED"
}
],
"questionnaires": [
{
"id": "clk3cggqs0011o6s2qnt3daob",
"completed": true
}
],
"timeUpdated": 1687938817.611
}
}
Response values
type
INDIVIDUAL
-
CORPORATE
-
status.basic/poa
UNVERIFIED
User has yet to submit all info/documents needed for verification.
PROCESSING
All info/documents required have been collected. Verification is now being processed.
INFO_REQUIRED
Additional info/documents from user needed to resume verification.
VERIFIED
-
REJECTED
-
basicInfo.country
country codes in the ISO 3166-1 alpha-3 standard (see here).
fullInfo.idDocs
ID_CARD
Identity Card
PASSPORT
Passport
DRIVERS
Driving License
RESIDENCE_PERMIT
Residence permit or registration document
SELFIE
Selfie
COMPANY_DOC
Company documents
FRONT_SIDE
-
BACK_SIDE
-
addresses
LOW
-
MODERATE
-
HIGH
-
SEVERE
-
MALICIOUS_ADDR
-
SUSPECTED_MALICIOUS_ADDR
-
HIGH_RISK_ADDR
-
MEDIUM_RISK_ADDR
-
MIXER
-
RISK_EXCHANGE
-
GAMBLING
-
INVOLVED_THEFT_ACTIVITY
-
INVOLVED_RANSOM_ACTIVITY
-
INVOLVED_PHISHING_ACTIVITY
-
INTERACT_MALICIOUS_ADDR
-
INTERACT_SUSPECTED_MALICIOUS_ADDR
-
INTERACT_HIGH_RISK_ADDR
-
INTERACT_MEDIUM_RISK_ADDR
-
WHITELISTED
-
BLACKLISTED
-
Last updated