Login

Event Type: login

  • account[* Object Account]: Account Information
    • account_id[* String]: Account ID
    • register_time[* String]: Time of Registration, ISO 8601, format YYYY-MM-DDTHH:mm:ss.sssZ, example: 2021-10-12T14:20:50.521+07:00
    • login_time[* String]: Time of Latest Login, ISO 8601, format YYYY-MM-DDTHH:mm:ss.sssZ, example: 2021-10-12T14:25:50.521+07:00
    • phone[Object Phone]: Account Phone Number
      • country_code[* Integer]: Country Code, Compliant with ITU E.164 standard, without '+ sign', without prefix 0, example: 86
      • phone_number[* String]: Phone Number, without '+ sign'
    • email[String]: Account Email
  • profile[Object Profile]: Personal Profile
    • person[Object Person]: Personal Information
      • name[Object Name]: Name
        • first_name[String]: First Name
        • middle_name[String]: Middle Name
        • last_name[String]: Last Name
        • nickname[String]: Nickname
      • sex[String]: Sex, enumeration
        • male
        • female
      • birthdate[String]: Birthdate, format: YYYY-MM-DD ,example: 1998-01-01
    • address[Object Address]: Personal Address
      • country[* String]: Country, 2-letter country code according to ISO 3166
      • region[* String]: Region
      • city[* String]: City
      • district[String]: District
      • detail[String]: Detailed Address
      • zip_code[String]: Zip Code
    • education[String]: Education
      • doctorate
      • master
      • bachelor
      • junior_college
      • high_school
      • middle_school
      • below_middle_school
    • profession[String]: Profession
    • annual_income[Object Amount]: Annual Income
      • currency[* String]: Local Currency Type, 3-letter code according to ISO 4217
      • amount_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
        }
    }
}