Skip to content

Commit 3e2edc4

Browse files
authored
Add web api response changes as of 2025-08-15 (#1495)
1 parent 238d815 commit 3e2edc4

File tree

18 files changed

+71
-45
lines changed

18 files changed

+71
-45
lines changed

json-logs/raw/audit/v1/actions.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,8 @@
263263
"pref.private_record_channel_redaction_duration_changed",
264264
"pref.public_record_channel_retention_duration_changed",
265265
"pref.public_record_channel_retention_changed",
266-
"pref.public_record_channel_redaction_duration_changed"
266+
"pref.public_record_channel_redaction_duration_changed",
267+
"pref.enterprise_search_connectors_config_changed"
267268
],
268269
"user": [
269270
"custom_tos_accepted",
@@ -434,7 +435,15 @@
434435
"app_deployed",
435436
"app_manifest_created",
436437
"app_manifest_updated",
437-
"admin_app_config_updated"
438+
"admin_app_config_updated",
439+
"app_flows_execute_slack_action",
440+
"agentforce_agent_activated",
441+
"agentforce_agent_deactivated",
442+
"agentforce_agent_slack_connection_removed",
443+
"agentforce_agent_slack_connection_added",
444+
"agentforce_agent_actions_updated",
445+
"agentforce_agent_metadata_updated",
446+
"agentforce_agent_slack_deleted"
438447
],
439448
"workflow_builder": [
440449
"workflow_created",
@@ -509,7 +518,8 @@
509518
"usergroup_remove_from_team_enqueued",
510519
"usergroup_updated",
511520
"usergroup_update_enqueued",
512-
"usergroup_section_updated"
521+
"usergroup_section_updated",
522+
"user_add_to_usergroup_failed"
513523
],
514524
"role": [
515525
"role_assigned",

json-logs/samples/api/admin.conversations.search.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@
121121
],
122122
"meeting_notes": {
123123
"file_id": "F00000000"
124-
}
124+
},
125+
"is_dormant": false
125126
}
126127
}
127128
],

json-logs/samples/api/conversations.info.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@
6262
""
6363
],
6464
"context_team_id": "T00000000",
65-
"updated": 12345
65+
"updated": 12345,
66+
"properties": {
67+
"is_dormant": false
68+
}
6669
},
6770
"error": "",
6871
"needed": "",

json-logs/samples/api/conversations.list.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@
6262
""
6363
],
6464
"user": [
65-
"W00000000",
66-
"U00000000"
65+
"W00000000"
6766
]
6867
},
6968
"threads_restricted_to": {
@@ -106,7 +105,8 @@
106105
],
107106
"meeting_notes": {
108107
"file_id": "F00000000"
109-
}
108+
},
109+
"is_dormant": false
110110
}
111111
}
112112
],

json-logs/samples/api/files.completeUploadExternal.json

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,6 @@
5050
"latest_reply": "0000000000.000000",
5151
"source": "",
5252
"is_silent_share": false
53-
},
54-
{
55-
"reply_users": [
56-
""
57-
],
58-
"reply_users_count": 12345,
59-
"reply_count": 12345,
60-
"ts": "0000000000.000000",
61-
"channel_name": "",
62-
"team_id": "T00000000",
63-
"share_user_id": "U00000000",
64-
"source": "",
65-
"is_silent_share": false
6653
}
6754
],
6855
"C00000001": [
@@ -80,19 +67,6 @@
8067
"latest_reply": "0000000000.000000",
8168
"source": "",
8269
"is_silent_share": false
83-
},
84-
{
85-
"reply_users": [
86-
""
87-
],
88-
"reply_users_count": 12345,
89-
"reply_count": 12345,
90-
"ts": "0000000000.000000",
91-
"channel_name": "",
92-
"team_id": "T00000000",
93-
"share_user_id": "U00000000",
94-
"source": "",
95-
"is_silent_share": false
9670
}
9771
]
9872
}

json-logs/samples/api/usergroups.create.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
""
3030
],
3131
"is_section": false,
32-
"is_idp_group": false
32+
"is_idp_group": false,
33+
"is_visible": false
3334
},
3435
"error": "",
3536
"needed": "",

json-logs/samples/api/usergroups.disable.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@
2929
"users": [
3030
"W00000000"
3131
],
32-
"is_section": false
32+
"is_section": false,
33+
"is_idp_group": false,
34+
"is_visible": false
3335
},
3436
"error": "",
3537
"needed": "",

json-logs/samples/api/usergroups.enable.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
"users": [
2929
""
3030
],
31-
"is_section": false
31+
"is_section": false,
32+
"is_idp_group": false,
33+
"is_visible": false
3234
},
3335
"error": "",
3436
"needed": "",

json-logs/samples/api/usergroups.list.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
],
3434
"user_count": 12345,
3535
"is_section": false,
36-
"is_idp_group": false
36+
"is_idp_group": false,
37+
"is_visible": false
3738
}
3839
],
3940
"error": "",

json-logs/samples/api/usergroups.update.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
"users": [
2929
""
3030
],
31-
"is_section": false
31+
"is_section": false,
32+
"is_idp_group": false,
33+
"is_visible": false
3234
},
3335
"error": "",
3436
"needed": "",

0 commit comments

Comments
 (0)