Members - Members Activity Totals



Endpoint

GET /v1.1/members/activity/totals

Parameters
required *

apiKey *  string Your API access key
segment *  integer ID of the segment to filter by
period  string In format of ' ' - eg 2 Month, 1 Day, 3 Week (default: 1 Week)
domain  string Filter by the domain the members registered from, without the 'http' or 'www' eg. mydomain.com
country  string ISO 3166-1 alpha-2, comma separated list. eg US,CA,GB
services  string Comma separated list – eg. twitter, facebook, lastfm, rdio, youtube, custom, etc
gender  string M, F or Other
age  string numeric representation of age
start_date  string In format of 'YYYY-MM-DD HH:MM:SS' – start of date range for results
end_date  string In format of 'YYYY-MM-DD HH:MM:SS' – end of date range for results

Sign in with your developer account to use the console, or sign up here

Example Request

curl -v -X GET "https://api.theappreciationengine.com/v1.1/members/activity/totals?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p&segmentid=321"
$curl = curl_init();

curl_setopt_array($curl, array( 
	CURLOPT_URL => "https://api.theappreciationengine.com/v1.1/members/activity/totals?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p&segmentid=321", 
	CURLOPT_RETURNTRANSFER => true, 
	CURLOPT_ENCODING => "", 
	CURLOPT_MAXREDIRS => 10, 
	CURLOPT_TIMEOUT => 0, 
	CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, 
	CURLOPT_CUSTOMREQUEST => "GET", 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
import requests

url = "https://api.theappreciationengine.com/v1.1/members/activity/totals?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p&segmentid=321"

headers = {}
payload = {}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text.encode('utf8'))
var request = require('request');
var options = {
	'method': 'GET',
	'url': 'https://api.theappreciationengine.com/v1.1/members/activity/totals?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p&segmentid=321',
	'headers': {}
};
request(options, function (error, response) {
	if (error) throw new Error(error);
	console.log(response.body);
});

Example Response

{
"metrics": {
"activities": "1",
"members": "1"
}
}