Event Type: login
account
[* Object Account]: Account Informationaccount_id
[* String]: Account IDregister_time
[* String]: Time of Registration, ISO 8601, format YYYY-MM-DDTHH:mm:ss.sssZ, example: 2021-10-12T14:20:50.521+07:00login_time
[* String]: Time of Latest Login, ISO 8601, format YYYY-MM-DDTHH:mm:ss.sssZ, example: 2021-10-12T14:25:50.521+07:00phone
[Object Phone]: Account Phone Numbercountry_code
[* Integer]: Country Code, Compliant with ITU E.164 standard, without '+ sign', without prefix 0, example: 86phone_number
[* String]: Phone Number, without '+ sign'
email
[String]: Account Email
profile
[Object Profile]: Personal Profileperson
[Object Person]: Personal Informationname
[Object Name]: Namefirst_name
[String]: First Namemiddle_name
[String]: Middle Namelast_name
[String]: Last Namenickname
[String]: Nickname
sex
[String]: Sex, enumeration- male
- female
birthdate
[String]: Birthdate, format: YYYY-MM-DD ,example: 1998-01-01
address
[Object Address]: Personal Addresscountry
[* String]: Country, 2-letter country code according to ISO 3166region
[* String]: Regioncity
[* String]: Citydistrict
[String]: Districtdetail
[String]: Detailed Addresszip_code
[String]: Zip Code
education
[String]: Education- doctorate
- master
- bachelor
- junior_college
- high_school
- middle_school
- below_middle_school
profession
[String]: Professionannual_income
[Object Amount]: Annual Incomecurrency
[* String]: Local Currency Type, 3-letter code according to ISO 4217amount_local
[* Double]: Amount ( Local Currency )amount_usd
[Double]: Amount ( USD ), The USD amount is converted from the original amount by the exchange rate, (required when not access to China Server)amount_cny
[Double]: Amount ( CNY ), The CNY amount is converted from the original amount by the exchange rate, (required when access to a China Server)
{
"account": {
"account_id": "123456789",
"register_time": "2021-10-12T14:20:50.521+07:00",
"login_time": "2021-10-12T14:25:50.521+07:00",
"phone": {
"country_code": 1,
"phone_number": "6165793816"
},
"email": "[email protected]"
},
"profile": {
"person": {
"name": {
"first_name": "Pierre",
"middle_name": "",
"last_name": "Laurent",
"nickname": "Snochy"
},
"sex": "male",
"birthdate": "1998-01-01"
},
"address": {
"country": "FR",
"region": "Grand Est",
"city": "Strasbourg City",
"district": "Ketali Lorem",
"detail": "3213 Building,lorem Street",
"zip_code": "310000"
},
"education": "master",
"profession": "XXX",
"annual_income": {
"currency": "USD",
"amount_local": 100000,
"amount_usd": 100000,
"amount_cny": 680000
}
}
}