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
| premium_progress_bar_enabled | boolean | whether the guild has the boost progress bar enabled |
60
60
| safety_alerts_channel_id | ?snowflake | the id of the channel where admins and moderators of Community guilds receive safety alerts from Discord |
61
+
| incidents_data | ?[incidents data](#DOCS_RESOURCES_GUILD/incidents-data-object) object | the incidents data for this guild |
61
62
62
63
\* These fields are only sent when using the [GET Current User Guilds](#DOCS_RESOURCES_USER/get-current-user-guilds) endpoint and are relative to the requested user
63
64
@@ -664,6 +665,26 @@ In guilds with [Membership Screening](https://support.discord.com/hc/en-us/artic
664
665
> warn
665
666
> We are making significant changes to the Membership Screening API specifically related to getting and editing the Membership Screening object. Long story short is that it can be improved. As such, we have removed those documentation. There will **not be** any changes to how pending members work, as outlined above. That behavior will stay the same.
Create a new guild. Returns a [guild](#DOCS_RESOURCES_GUILD/guild-object) object on success. Fires a [Guild Create](#DOCS_EVENTS_GATEWAY_EVENTS/guild-create) Gateway event.
@@ -1063,11 +1084,11 @@ Returns a list of [ban](#DOCS_RESOURCES_GUILD/ban-object) objects for the users
| limit? | number | number of users to return (up to maximum 1000) | 1000 |
1090
+
| before? \*| snowflake | consider only users before given user id | null |
1091
+
| after? \*| snowflake | consider only users after given user id | null |
1071
1092
1072
1093
\* Provide a user id to `before` and `after` for pagination. Users will always be returned in ascending order by `user.id`. If both `before` and `after` are provided, only `before` is respected.
1073
1094
@@ -1355,3 +1376,19 @@ Modifies the onboarding configuration of the guild. Returns a 200 with the [Onbo
1355
1376
| default_channel_ids | array of snowflakes | Channel IDs that members get opted into automatically |
1356
1377
| enabled | boolean | Whether onboarding is enabled in the guild |
1357
1378
| mode |[onboarding mode](#DOCS_RESOURCES_GUILD/guild-onboarding-object-onboarding-mode)| Current mode of onboarding |
1379
+
1380
+
## Modify Guild Incident Actions % PUT /guilds/{guild.id#DOCS_RESOURCES_GUILD/guild-object}/incident-actions
1381
+
1382
+
Modifies the incident actions of the guild. Returns a 200 with the [Incidents Data](#DOCS_RESOURCES_GUILD/incidents-data-object) object for the guild. Requires the `MANAGE_GUILD` permission.
1383
+
1384
+
###### JSON Params
1385
+
1386
+
> info
1387
+
> Both `invites_disabled_until` and `dms_disabled_until` can be enabled for a maximal timespan of 24 hours in the future.
0 commit comments