Interface ConnectedWebsite

Contains information about one website the current user is logged in with Telegram.

interface ConnectedWebsite {
    @type: "connectedWebsite";
    bot_user_id: number;
    browser: string;
    domain_name: string;
    id: string;
    ip_address: string;
    last_active_date: number;
    location: string;
    log_in_date: number;
    platform: string;
}

Properties

@type: "connectedWebsite"
bot_user_id: number

User identifier of a bot linked with the website.

browser: string

The version of a browser used to log in.

domain_name: string

The domain name of the website.

id: string

Website identifier.

ip_address: string

IP address from which the user was logged in, in human-readable format.

last_active_date: number

Point in time (Unix timestamp) when obtained authorization was last used.

location: string

Human-readable description of a country and a region from which the user was logged in, based on the IP address.

log_in_date: number

Point in time (Unix timestamp) when the user was logged in.

platform: string

Operating system the browser is running on.