Skip to main content

Guild Template Object

Represents a code that when used, creates a guild based on a snapshot of an existing guild.
Guild Template Structure
FieldTypeDescription
codestringthe template code (unique ID)
namestringtemplate name
description?stringthe description for the template
usage_countintegernumber of times this template has been used
creator_idsnowflakethe ID of the user who created the template
creatoruser objectthe user who created the template
created_atISO8601 timestampwhen this template was created
updated_atISO8601 timestampwhen this template was last synced to the source guild
source_guild_idsnowflakethe ID of the guild this template is based on
serialized_source_guildpartial guild objectthe guild snapshot this template contains; placeholder IDs are given as integers
is_dirty?booleanwhether the template has unsynced changes
Example Guild Template Object
{
  "code": "hgM48av5Q69A",
  "name": "Friends & Family",
  "description": "",
  "usage_count": 49605,
  "creator_id": "132837293881950208",
  "creator": {
    "id": "132837293881950208",
    "username": "hoges",
    "avatar": "79b0d9f8c340f2d43e1f78b09f175b62",
    "discriminator": "0001",
    "public_flags": 129
  },
  "created_at": "2020-04-02T21:10:38+00:00",
  "updated_at": "2020-05-01T17:57:38+00:00",
  "source_guild_id": "678070694164299796",
  "serialized_source_guild": {
    "name": "Friends & Family",
    "description": null,
    "region": "us-west",
    "verification_level": 0,
    "default_message_notifications": 0,
    "explicit_content_filter": 0,
    "preferred_locale": "en-US",
    "afk_timeout": 300,
    "roles": [
      {
        "id": 0,
        "name": "@everyone",
        "permissions": 104324689,
        "color": 0,
        "hoist": false,
        "mentionable": false
      }
    ],
    "channels": [
      {
        "name": "Text Channels",
        "position": 1,
        "topic": null,
        "bitrate": 64000,
        "user_limit": 0,
        "nsfw": false,
        "rate_limit_per_user": 0,
        "parent_id": null,
        "permission_overwrites": [],
        "id": 1,
        "type": 4
      },
      {
        "name": "general",
        "position": 1,
        "topic": null,
        "bitrate": 64000,
        "user_limit": 0,
        "nsfw": false,
        "rate_limit_per_user": 0,
        "parent_id": 1,
        "permission_overwrites": [],
        "id": 2,
        "type": 0
      }
    ],
    "afk_channel_id": null,
    "system_channel_id": 2,
    "system_channel_flags": 0,
    "icon_hash": null
  },
  "is_dirty": null
}

Get Guild Template

GET/guilds/templates/{template.code}
Returns a guild template object for the given code.

Get Guild Templates

GET/guilds/{guild.id}/templates
Returns an array of guild template objects. Requires the MANAGE_GUILD permission.

Create Guild Template

POST/guilds/{guild.id}/templates
Creates a template for the guild. Requires the MANAGE_GUILD permission. Returns the created guild template object on success.
JSON Params
FieldTypeDescription
namestringname of the template (1-100 characters)
description??stringdescription for the template (0-120 characters)

Sync Guild Template

PUT/guilds/{guild.id}/templates/{template.code}
Syncs the template to the guild’s current state. Requires the MANAGE_GUILD permission. Returns the guild template object on success.

Modify Guild Template

PATCH/guilds/{guild.id}/templates/{template.code}
Modifies the template’s metadata. Requires the MANAGE_GUILD permission. Returns the guild template object on success.
JSON Params
FieldTypeDescription
name?stringname of the template (1-100 characters)
description??stringdescription for the template (0-120 characters)

Delete Guild Template

DELETE/guilds/{guild.id}/templates/{template.code}
Deletes the template. Requires the MANAGE_GUILD permission. Returns the deleted guild template object on success.