Esri's Geotrigger Service is replacing Geoloqi! Learn More | FAQ

user/list

Contents

URL

https://api.geoloqi.com/1/user/list

Description

Retrieves a list of all users created by an application. This is intended to be used for applications, and is not relevant for personal access tokens. You can obtain the client ID and secret from your account applications page, which can be provided to the API as an HTTP auth username and password, respectively.

Supported Request Methods

GET

Parameters

  • offset default: 0
    The offset at which to start retrieving users.
  • limit default: 25
    The number of users to return per page.

Example Request

curl -s -H "Content-Type: application/json" \ 
     --user "YOUR_CLIENT_ID:YOUR_CLIENT_SECRET" https://api.geoloqi.com/1/user/list

Example Response

{
  "users": [
    {
      "user_id": "12345",
      "username": "johndoe",
      "name": "John",
      "display_name": "Doe",
      "bio": "",
      "website": "",
      "timezone": "America/Los_Angeles",
      "twitter": "johndoe",
      "profile_image": "https://s3.amazonaws.com/geoloqi/blank-profile-image-green.png",
      "is_anonymous": 0,
      "has_custom_username": 1,
      "has_push_token": 1,
      "public_location": 1,
      "public_geonotes": 1,
      "public_geonote_email": 0,
      "timezone_offset": "-0700",
      "foursquare_id": "12345",
      "email": "[email protected]",
      "extra": {
      },
      "phone": "",
      "devices": {
            "apns_dev": [
                  "79bb386c9de15040d1af936baca7828fb2ea8539d6956e1703132ffa36c7658f"
            ],
            "apns_live": [],
            "c2dm": []
      }
    }
  ],
  "paging": {
    "limit": 25,
    "total": 1
  }
}