GET /v1/computers/user_activity
Description
Query Parameters
Name | Type | Example Values | Description |
---|---|---|---|
q |
String | johndoe | |
limit |
Integer | 3 |
Name | Type | Description |
---|---|---|
version | String | |
metadata.links.self | String | |
metadata.links.next | String | |
metadata.results.total | Integer | |
metadata.results.current_item_count | Integer | |
metadata.results.index | Integer | |
metadata.results.items_per_page | Integer | |
data | Array | |
data[].connector_guid | GUID | |
data[].hostname | String | |
data[].active | Boolean | |
data[].links.computer | String | |
data[].links.trajectory | String | |
data[].links.group | String |
Examples
- Fetch a specific computer's trajectory with given connector_guid and filter for events with user ...
Fetch a specific computer's trajectory with given connector_guid and filter for events with user name activity
Request
Requires AuthorizationGET /v1/computers/user_activity?q=johndoe&limit=3
Headers
accept: application/json
content-type: application/json
authorization: Basic FILTERED
cURL Edit, then copy and paste on your terminal
curl -X GET \
-H 'accept: application/json' \
-H 'content-type: application/json' \
--compressed -H 'Accept-Encoding: gzip, deflate' \
-u YOUR_API_CLIENT_ID \
'https://api.apjc.amp.cisco.com/v1/computers/user_activity?q=johndoe&limit=3'
Response
cURL Edit, then copy and paste on your terminal
curl -X GET \ -H 'accept: application/json' \ -H 'content-type: application/json' \ --compressed -H 'Accept-Encoding: gzip, deflate' \ -u YOUR_API_CLIENT_ID \ 'https://api.apjc.amp.cisco.com/v1/computers/user_activity?q=johndoe&limit=3'
Shortened for readability
strict-transport-security: max-age=31536000 content-type: application/json; charset=utf-8 status: 200 OK x-ratelimit-limit: 3000 x-ratelimit-reset: 1846 x-ratelimit-remaining: 2889 x-frame-options: SAMEORIGIN x-ratelimit-resetdate: 2019-01-09T17:44:06Z transfer-encoding: chunked
{
"version": "v1.2.0",
"metadata": {
"links": {
"self": "https://api.apjc.amp.cisco.com/v1/computers/user_activity?q=johndoe&limit=3",
"next": "https://api.apjc.amp.cisco.com/v1/computers/user_activity?q=johndoe&limit=3&offset=3"
},
"results": {
"total": 5,
"current_item_count": 3,
"index": 0,
"items_per_page": 3
}
},
"data": [
{
"connector_guid": "13d7e7c9-a351-4ad8-bd48-85d338de9b66",
"hostname": "Demo_Low_Prev_Retro",
"active": false,
"links": {
"computer": "https://api.apjc.amp.cisco.com/v1/computers/13d7e7c9-a351-4ad8-bd48-85d338de9b66",
"trajectory": "https://api.apjc.amp.cisco.com/v1/computers/13d7e7c9-a351-4ad8-bd48-85d338de9b66/user_trajectory?q=johndoe",
"group": "https://api.apjc.amp.cisco.com/v1/groups/b077d6bc-bbdf-42f7-8838-a06053fbd98a"
}
},
{
"connector_guid": "d7fbcdb6-0a14-4e39-867e-02f5e1649497",
"hostname": "Demo_Plugx",
"active": false,
"links": {
"computer": "https://api.apjc.amp.cisco.com/v1/computers/d7fbcdb6-0a14-4e39-867e-02f5e1649497",
"trajectory": "https://api.apjc.amp.cisco.com/v1/computers/d7fbcdb6-0a14-4e39-867e-02f5e1649497/user_trajectory?q=johndoe",
"group": "https://api.apjc.amp.cisco.com/v1/groups/b077d6bc-bbdf-42f7-8838-a06053fbd98a"
}
}
]
}