The Guild object is used to gain context into Discord guilds (servers), including information such as id, icon, and name.
Guild Object
Same as discord guild object, with two additions:
Json Params
Field | Type | Description |
---|---|---|
has_architus | boolean | whether Architus is a member of the guild |
architus_admin | boolean | whether the user is an Architus admin in the guild |
Guild Example
{
"features": [
"ANIMATED_ICON",
"BANNER",
"VANITY_URL",
"INVITE_SPLASH"
],
"name": "discord.py",
"owner": false,
"icon": "3aa641b21acded468308a37eef43d7b3",
"id": "336642139381301249",
"permissions": 104189632,
"has_architus": true,
"architus_admin": false
}
Get List of Guilds
v1 Rest API
GET/guilds
Requires authenticationReturns a list of guild objects that the user is a member of.
Last modified 2 years ago Edit this page on GitHub