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

application/list

Contents

URL

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

Description

Retrieve a list of all applications created by the authenticated user.

Supported Request Methods

GET

Parameters

No parameters are required for this method.

Example Request

$ curl https://api.geoloqi.com/1/application/list -H \
"Authorization: OAuth Log in to get your personal access token"

Response

{
  "applications":[
    {
      "application_id":"57",
      "name":"Python-SDK",
      "icon":"https:\/\/geoloqi.com\/images\/default_layer.png",
      "description":"A python wrapper for the Geoloqi API.",
      "date_created":"2012-03-06T01:08:44+00:00",
      "client_id":"*removed*",
      "client_secret":"*removed*",
      "redirect_uri":null,
      "push":{
        "apns_live":false,
        "apns_dev":false,
        "c2dm_live":false
      },
      "apns_mode":"dev",
      "permissions":[
        "can_create_accounts",
        "can_create_anonymous_accounts",
        "grant_password"
      ],
      "stats":{
        "api_hits":{
          "today":1,
          "this_month":3
        }
      }
    },
    {
      "application_id":"2m",
      "name":"SampleAndroidApp",
      "icon":"https:\/\/geoloqi.com\/images\/default_layer.png",
      "description":"An example Android app for featuring the Geoloqi Android SDK.",
      "date_created":"2011-11-27T00:53:39+00:00",
      "client_id":"*removed*",
      "client_secret":"*removed*",
      "redirect_uri":null,
      "push":{
        "apns_live":false,
        "apns_dev":false,
        "c2dm_live":false
      },
      "apns_mode":null,
      "permissions":[
        "can_create_accounts",
        "can_create_anonymous_accounts",
        "grant_password"
      ],
      "stats":{
        "api_hits":{
          "today":1,
          "this_month":22
        }
      }
    }
  ]
}