You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Add activity log event types API to Unstable spec
- Add new GET /admins/activity_log_event_types endpoint that returns all
valid event type strings for admin activity logs
- Add event_types[] query parameter to GET /admins/activity_logs for
filtering logs by event type
- Add activity_log_event_type_list schema
Relates to intercom/intercom#478379, intercom/intercom#480911,
intercom/intercom#481260, intercom/intercom#481894
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: descriptions/0/api.intercom.io.yaml
+141Lines changed: 141 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -206,6 +206,19 @@ paths:
206
206
example: '1677861493'
207
207
schema:
208
208
type: string
209
+
- name: event_types[]
210
+
in: query
211
+
required: false
212
+
description: An optional list of event types to filter activity logs by. When
213
+
provided, only logs matching the specified event types are returned. Use
214
+
the List all activity log event types endpoint to retrieve available values.
215
+
schema:
216
+
type: array
217
+
items:
218
+
type: string
219
+
example:
220
+
- admin_login_success
221
+
- app_name_change
209
222
tags:
210
223
- Admins
211
224
operationId: listActivityLogs
@@ -272,6 +285,113 @@ paths:
272
285
message: Access Token Invalid
273
286
schema:
274
287
"$ref": "#/components/schemas/error"
288
+
"/admins/activity_log_event_types":
289
+
get:
290
+
summary: List all activity log event types
291
+
parameters:
292
+
- name: Intercom-Version
293
+
in: header
294
+
schema:
295
+
"$ref": "#/components/schemas/intercom_version"
296
+
tags:
297
+
- Admins
298
+
operationId: listActivityLogEventTypes
299
+
description: |
300
+
You can get a list of all activity log event types. This is useful for discovering valid values to use with the `event_types[]` filter on the List all activity logs endpoint.
0 commit comments