Skip to main content

Get user location history

GET 

/api/web/v1/users/:userid/userlocations

Get the location history of the specified user. Caller requires the USERRBASETTINGS:VIEW permission.

Request

Path Parameters

    userid stringrequired

    The UUID of the user whose location history is to be retrieved.

Responses

Successful

Schema

  • Array [

  • city string

    The city name--always returned in upper-case.

    countryCode string

    A two-character (alpha-2) ISO 3166-1 country code.

    expiryDate date-time

    The date this user location will expire.

    id stringrequired

    The UUID of the user location.

    ipAddress string

    The IPv4 Address.

    isp string

    The ISP name--always returned in upper-case.

    lastAuthenticationTime date-timerequired

    The time of the last authentication from this location.

    latitude float

    The latitude.

    longitude float

    The longitude.

    numberOfAuthentications int32required

    The number of times this location was used during authentication.

    privateIpAddress boolean

    Whether the IP provided is a private IP Address.

  • ]

Loading...