All known identification information about the visitor

interface ExtendedVisitorData {
    confidence: Confidence;
    device: string;
    firstSeenAt: SeenAt;
    ip: string;
    ipLocation?: IpLocation;
    lastSeenAt: SeenAt;
    os: string;
    osVersion: string;
    requestId: string;
    visitorFound: boolean;
    visitorId: string;
}

Hierarchy (view full)

Properties

confidence: Confidence

A confidence score that tells how much the agent is sure about the visitor identifier

device: string

Device.

Example

'Samsung SM-J330F'
firstSeenAt: SeenAt

When the visitor was seen for the first time

ip: string

IP address. Only IPv4 are returned.

Example

'191.14.35.17'
ipLocation?: IpLocation

IP address location. Can be empty for anonymous proxies

lastSeenAt: SeenAt

When the visitor was seen previous time

os: string

OS name.

Example

'iOS'

Example

'Android'
osVersion: string

OS version

Example

'10.13.6'
requestId: string

The current request identifier. It's different for every request.

visitorFound: boolean

If true, this visitor was found and visited before. If false, this visitor wasn't found and probably didn't visit before.

visitorId: string

The visitor identifier

Generated using TypeDoc