Objects
/
SessionVisitorData

SessionVisitorData

SessionVisitorData

  • id
    string
    Unique identifier for the visitor
  • ip
    string
    IP address of the visitor
  • geolocation
    object
    • country_code
      string
      Two-letter country code (ISO 3166-1 alpha-2)
    • city
      string
      City name
    • region
      string
      Region or state name
  • name
    string
    Name of the visitor if identified
  • email
    string
    Email address of the visitor if identified
  • email_hash
    string
    Hashed version of the visitor's email for privacy
  • params
    array of object
    Custom parameters associated with the visitor
    • name
      string
      Parameter name
    • value
      string
      Parameter value
  • last_session_timestamp
    integer
    Unix timestamp of the visitor's last session
  • first_session_timestamp
    integer
    Unix timestamp of the visitor's first session
Example
{
"id": "",
"ip": "",
"geolocation": {
"country_code": "",
"city": "",
"region": ""
},
"name": "",
"email": "",
"email_hash": "",
"params": [
{
"name": "",
"value": ""
}
],
"last_session_timestamp": 0,
"first_session_timestamp": 0,
"__UNSAFE_refPath": null
}
Built with

Show your support! Star us on GitHub ⭐️