Skip to content

Latest commit

 

History

History
281 lines (201 loc) · 7.45 KB

server-api.md

File metadata and controls

281 lines (201 loc) · 7.45 KB

#Countly Server API Reference

This document describes the API functionality provided with Countly Server. Both read (/o) and write (/i) requests are available through the Countly Server API.

FOR A COMPLETE API LIST, SEE COUNTLY API DOCUMENTATION PAGE

##1. Write API

First API call when user opens up your application;

http://your_domain/i?
	app_key=AAA &
	device_id=BBB &
	sdk_version=CCC &
	begin_session=1 &
	metrics= {
		"_os": "DDD",
		"_os_version": "EEE",
		"_device": "FFF",
		"_resolution": "GGG",
		"_carrier": "HHH",
		"_app_version": "III"
	}

Second and consequent API calls are just like below. The same call is repeated every 30 seconds extending user's current session duration;

http://your_domain/i?
	app_key=AAA &
	device_id=BBB &
	session_duration=30

Final API call ending user's session;

http://your_domain/i?
	app_key=AAA &
	device_id=BBB &
	end_session=1

Of course each request is url encoded and does not have any of the spaces/new lines shown in the above examples;

http://your_domain/i?app_key=AAA&device_id=BBB&sdk_version=CCC&begin_session=1&metrics=%7B%22_os%22%3A%22DDD%22%2C%22_os_version%22%3A%22EEE%22%2C%22_device%22%3A%22FFF%22%2C%22_resolution%22%3A%22GGG%22%2C%22_carrier%22%3A%22HHH%22%7D

###Parameters

####Mandatory Parameters

Parameters listed below are mandatory for every write API request.

  • app_key

    Application key for the current application. Can be obtained from your dashboard after creating your application.

  • device_id

    Unique id for the user device.

####Optional Parameters

  • begin_session

    Indicates the start of the user session. begin_session should be used with the API call you make at the beginning of user's session. begin_session should be given the value 1. sdk_version parameter needs to be present in the request if begin_session is used.

  • end_session

    Indicates the end of the user session. end_session should be used with the API call you make at the end of user's session. end_session should be given the value 1.

  • metrics

    JSON object containing key, value pairs. metrics can only be sent together with begin_session.

    Currently below predefined metrics are valid;

      metrics={
      	"_os": "DDD",
      	"_os_version": "EEE",
      	"_device": "FFF",
      	"_resolution": "GGG",
      	"_carrier": "HHH",
      	"_app_version": "III"
      }
    
  • session_duration

    Heartbeat like parameter for extending session duration of the user for session_duration seconds.

  • timestamp

    10 digit UTC timestamp for recording past data.

  • ip_address

    IP address of the user. By default IP address of the user is detected from the connection but you can send it manually using this parameter. ip_address parameter can only be used with the begin_session request.

  • events

    JSON array containing event objects. Each event object can have below properties;

      - key (Mandatory, String)
      - count (Mandatory, Integer)
      - sum (Optional, Double)
      - segmentation (Optional, Dictionary Object)
    

    A sample API call to the server will look like this;

      http://your_domain/i?
      	app_key=AAA &
      	device_id=BBB &
      	events= [
      		{
      			"key": "level_success",
      			"count": 4
      		},
      		{
      			"key": "level_fail",
      			"count": 2
      		},
      		{
      			"key": "in_app_purchase",
      			"count": 3,
      			"sum": 2.97,
      			"segmentation": {
      				"app_version": "1.0",
      				"country": "Turkey"
      			}
      		}
      	]
    

    After this request we will be able to;

    1. See how many times user completed a level successfully or failed.
    2. See how many times in app purchase occured and the total amount of these IAPs.
    3. Segment IAP data into two levels, one is app_version and the other is country. So we will be able to identify which application version performed best in terms of IAP and which countries tend to do IAP more.

##2. Read API

###A. v1

Countly Dashboard uses v1 API in order to fetch data for your dashboard. This version of the read api returns data in an almost raw format that needs to be processed in order to be meaningful. Countly JavaScript libraries can be used for this purpose.

http://your_domain/o?
	api_key=AAA &
	app_id=BBB &
	method=CCC &

###Parameters

####Mandatory Parameters

Parameters listed below are mandatory for every read API request.

  • api_key

    Api Key of your account that you can obtain from your account settings popup.

  • app_id

    Application ID of the application. Can be obtained from your dashboard after creating your application.

  • method

    Defines the data to fetch. Can take one of sessions, users, locations, carriers, devices, device_details, app_versions, events, get_events, live, live_graph, retention values.

    For example below read request fetches all location related data for the application;

      http://your_domain/o?
      	api_key=AAA &
      	app_id=BBB &
      	method=locations &
    

    Note: live, live_graph and retention methods are available only on Countly Cloud and Countly Enterprise editions.

####Optional Parameters

  • callback

    Callback function name. If specified, result will be sent as a parameter to this function (JSONP).

  • event

    This parameter is used only if method=events is available inside the request. Such as;

      http://your_domain/o?
      	api_key=AAA &
      	app_id=BBB &
      	method=events &
      	event=in_app_purchase
    

    It is used in order the specify which event data will be fetched and returned. If this parameter is missing from the request;

      http://your_domain/o?
      	api_key=AAA &
      	app_id=BBB &
      	method=events
    

    First event from the event list will automatically be selected by the API and the data for this event will be returned.

  • action

    Can only take refresh value for now. If the read request contains action=refresh parameter only the data for the current day will be returned.

      http://your_domain/o?
      	api_key=AAA &
      	app_id=BBB &
      	method=locations &
      	action=refresh
    

###B. v2

v2 version of the api is designed to return ready-to-use metrics for today, last 7 days and last 30 days. There are two available paths;

####/o/analytics/dashboard

	http://your_domain/o/analytics/dashboard?
		api_key=AAA &
		app_id=BBB

Output:

{
	"30days": { // --> X object
		"dashboard": {
			"total_sessions": { // --> Y object
				"total": 304947,
				"change": "-24.6%", // percent change
				"trend": "d" // trend, can be up (u) or down (d)
			},
			"total_users": { // Same data as Y object },
			"new_users": { // Same data as Y object },
			"total_time": { // Same data as Y object },
			"avg_time": { // Same data as Y object },
			"avg_requests": { // Same data as Y object }
		},
		"top": {
			"platforms": [ // --> Z array
				{
				  "name": "iOS",
				  "percent": 60
				},
				{
				  "name": "Android",
				  "percent": 30
				},
				{
				  "name": "BlackBerry",
				  "percent": 10
				},
			],
			"resolutions": [ // Same data as Z array ],
			"carriers": [ // Same data as Z array ],
			"users": [ // Same data as Z array ]
		},
		"period": "19 Jan - 17 Feb"
	},
	"7days": { // Same data as X object },
	"today": { // Same data as X object },
}

####/o/analytics/countries

	http://your_domain/o/analytics/countries?
		api_key=AAA &
		app_id=BBB

Output:

{
	"30days": [ // --> X array, contains at most 10 countries
		{
			"country": "Turkey",
			"code": "tr",
			"t": 72225,
			"u": 8781,
			"n": 1340
		}
	]
	"7days": [ // Same data as X array ],
	"today": [ // Same data as X array ],
}