Home//
REST API Reference
/- List all activity logs
Identify an admin
Set an admin to away
List all admins
Retrieve an admin
Admin
List all activity logs
You can get a log of activities by all admins in an app.
Security
bearerAuth
Intercom-Versionstring(intercom_version)
Intercom API version.
By default, it's equal to the version set in the app package.
Default:"2.9"
Enum:"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example:2.9
- The production API serverhttps://api.intercom.io/admins/activity_logs
- The european API serverhttps://api.eu.intercom.io/admins/activity_logs
- The australian API serverhttps://api.au.intercom.io/admins/activity_logs
curl -i -X GET \
'https://api.intercom.io/admins/activity_logs?created_at_after=1677253093&created_at_before=1677861493' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: 2.9'Successful response
String representing the object's type. Always has the value activity_log.list.
Example:"activity_log.list"
pagesobject or null(Cursor based pages)
Cursor-based pagination is a technique used in the Intercom API to navigate through large amounts of data. A "cursor" or pointer is used to keep track of the current position in the result set, allowing the API to return the data in small chunks or "pages" as needed.
activity_logsArray of objects(Activity Log)
An array of activity logs
Response
{ "type": "activity_log.list", "pages": { "type": "pages", "next": null, "page": 1, "per_page": 20, "total_pages": 1 }, "activity_logs": [ { … }, { … } ] }