Get user events
Get user events via GET request.
GET
/users-by-id/:user_id/events/
Parameters
Type
Description
user_id
integer
Your custom user ID
curl -X GET -H "Authorization: Token <your_64_char_api_key>" "https://<your_app_subdomain>.user.com/api/public/users-by-id/:user_id/events/"
Response
{
"count": 6,
"next": null,
"previous": null,
"results": [
{
"id": 600714,
"client": 3577959,
"timestamp": "2016-11-22T12:53:41.020361Z",
"items": [],
"event": "MyNewEvent",
"event_id": 550
},
{
"id": 573849,
"client": 3577959,
"timestamp": "2016-11-18T11:34:30.765917Z",
"items": [],
"event": "NewOrder",
"event_id": 583
},
{
"id": 573847,
"client": 3577959,
"timestamp": "2016-11-18T11:34:27.088702Z",
"items": [],
"event": "MyNewEvent",
"event_id": 550
},
...
]
}
var settings = {
"async": true,
"crossDomain": true,
"url": "https://<your_app_subdomain>.user.com/api/public/users-by-id/:user_id/events/",
"method": "GET",
"headers": {
"authorization": "Token <your_64_char_api_key>"
}
}
$.ajax(settings).done(function (response) {
console.log(response);
});
var data = null;
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function () {
if (this.readyState === 4) {
console.log(this.responseText);
}
});
xhr.open("GET", "https://<your_app_subdomain>.user.com/api/public/users-by-id/:user_id/events/");
xhr.setRequestHeader("authorization", "Token <your_64_char_api_key>");
xhr.send(data);
var request = require("request");
var options = { method: 'GET',
url: 'https://<your_app_subdomain>.user.com/api/public/users-by-id/:user_id/events/',
headers: { authorization: 'Token <your_64_char_api_key>' } };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://<your_app_subdomain>.user.com/api/public/users-by-id/:user_id/events/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => array(
"authorization: Token <your_64_char_api_key>"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "https://<your_app_subdomain>.user.com/api/public/users-by-id/:user_id/events/"
headers = {'authorization': 'Token <your_64_char_api_key>'}
response = requests.request("GET", url, headers=headers)
print(response.text)
import http.client
conn = http.client.HTTPSConnection("<your_app_subdomain>.user.com")
headers = { 'authorization': "Token <your_64_char_api_key>" }
conn.request("GET", "/api/public/users-by-id/:user_id/events/", headers=headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))