Client object

With Alan AI’s client object, you can get general information about users interacting with the AI assistant:

  • Approximate user’s location

  • Interactions statistics for the user

In the example below, Alan AI writes to logs information about every user interacting with the AI assistant and user events.

Dialog script
onUserEvent((p, e)=> {
    console.log(e, p.client);
});

Client object data

The client object provides the following user data:

Client object
{
    geoLoc: {
        city: 'Sunnyvale',
        continent: 'North America',
        country: 'United States',
        lat: 37.3479,
        lon: -122.0351,
        source: 'ip-address'
    },
    ip: '67.195.198.201',
    stats: {
        interactions: 0,
        lastConnectTs: 1617975166387,
        lastInteractionTs: 0,
        recognized: 0,
        unrecognized: 0
    },
    timeZone: 'America/Los_Angeles'
}

Field name

Data type

Description

city

String

User’s city

continent

String

User’s continent

lat

Float

Latitude of the user’s position

lon

Float

Longitude of the user’s position

source

String

Data source

ip

String

User’s IP address

interactions

Integer

Number of interactions with the user

lastConnectTs

Integer

Timestamp of the last connection to the AI assistant

lastInteractionTs

Integer

Timestamp of the last interaction with the AI assistant

recognized

Integer

Number of recognized user’s interactions

unrecognized

Integer

Number of unrecognized user’s interactions

timeZone

String

User’s time zone