Represents a guild or DM channel within Discord.
Field | Type | Description |
---|---|---|
id | snowflake | the id of this channel |
type | integer | the type of channel |
guild_id? | snowflake | the id of the guild (may be missing for some channel objects received over gateway guild dispatches) |
position? | integer | sorting position of the channel |
permission_overwrites? | array of overwrite objects | explicit permission overwrites for members and roles |
name? | ?string | the name of the channel (1-100 characters) |
topic? | ?string | the channel topic (0-1024 characters) |
nsfw? | boolean | whether the channel is nsfw |
last_message_id? | ?snowflake | the id of the last message sent in this channel (or thread for GUILD_FORUM channels) (may not point to an existing or valid message or thread) |
bitrate? | integer | the bitrate (in bits) of the voice channel |
user_limit? | integer | the user limit of the voice channel |
rate_limit_per_user?* | integer | amount of seconds a user has to wait before sending another message (0-21600); bots, as well as users with the permission manage_messages or manage_channel , are unaffected |
recipients? | array of user objects | the recipients of the DM |
icon? | ?string | icon hash of the group DM |
owner_id? | snowflake | id of the creator of the group DM or thread |
application_id? | snowflake | application id of the group DM creator if it is bot-created |
parent_id? | ?snowflake | for guild channels: id of the parent category for a channel (each parent category can contain up to 50 channels), for threads: id of the text channel this thread was created |
last_pin_timestamp? | ?ISO8601 timestamp | when the last pinned message was pinned. This may be null in events such as GUILD_CREATE when a message is not pinned. |
rtc_region? | ?string | voice region id for the voice channel, automatic when set to null |
video_quality_mode? | integer | the camera video quality mode of the voice channel, 1 when not present |
message_count? | integer | an approximate count of messages in a thread, stops counting at 50 |
member_count? | integer | an approximate count of users in a thread, stops counting at 50 |
thread_metadata? | a thread metadata object | thread-specific fields not needed by other channels |
member? | a thread member object | thread member object for the current user, if they have joined the thread, only included on certain API endpoints |
default_auto_archive_duration? | integer | default duration that the clients (not the API) will use for newly created threads, in minutes, to automatically archive the thread after recent activity, can be set to: 60, 1440, 4320, 10080 |
permissions? | string | computed permissions for the invoking user in the channel, including overwrites, only included when part of the resolved data received on a slash command interaction |
flags? | integer | channel flags combined as a bitfield |
* rate_limit_per_user
also applies to thread creation. Users can send one message and create one thread during each rate_limit_per_user
interval.
warn Type 10, 11 and 12 are only available in API v9 and above.
Type | ID | Description |
---|---|---|
GUILD_TEXT | 0 | a text channel within a server |
DM | 1 | a direct message between users |
GUILD_VOICE | 2 | a voice channel within a server |
GROUP_DM | 3 | a direct message between multiple users |
GUILD_CATEGORY | 4 | an organizational category that contains up to 50 channels |
GUILD_NEWS | 5 | a channel that users can follow and crosspost into their own server |
GUILD_NEWS_THREAD | 10 | a temporary sub-channel within a GUILD_NEWS channel |
GUILD_PUBLIC_THREAD | 11 | a temporary sub-channel within a GUILD_TEXT channel |
GUILD_PRIVATE_THREAD | 12 | a temporary sub-channel within a GUILD_TEXT channel that is only viewable by those invited and those with the MANAGE_THREADS permission |
GUILD_STAGE_VOICE | 13 | a voice channel for hosting events with an audience |
GUILD_DIRECTORY | 14 | the channel in a hub containing the listed servers |
GUILD_FORUM* | 15 | (still in development) a channel that can only contain threads |
* The GUILD_FORUM
channel type is still in active development. Avoid implementing any features that are not documented here, since they are subject to change without notice!
Mode | Value | Description |
---|---|---|
AUTO | 1 | Discord chooses the quality for optimal performance |
FULL | 2 | 720p |
Flag | Value | Description |
---|---|---|
PINNED | 1 << 1 | this thread is pinned to the top of its parent forum channel |
{
"id": "41771983423143937",
"guild_id": "41771983423143937",
"name": "general",
"type": 0,
"position": 6,
"permission_overwrites": [],
"rate_limit_per_user": 2,
"nsfw": true,
"topic": "24/7 chat about how to gank Mike #2",
"last_message_id": "155117677105512449",
"parent_id": "399942396007890945",
"default_auto_archive_duration": 60
}
Bots can post or publish messages in this type of channel if they have the proper permissions. These are called "Announcement Channels" in the client.
{
"id": "41771983423143937",
"guild_id": "41771983423143937",
"name": "important-news",
"type": 5,
"position": 6,
"permission_overwrites": [],
"nsfw": true,
"topic": "Rumors about Half Life 3",
"last_message_id": "155117677105512449",
"parent_id": "399942396007890945",
"default_auto_archive_duration": 60
}
{
"id": "155101607195836416",
"guild_id": "41771983423143937",
"name": "ROCKET CHEESE",
"type": 2,
"nsfw": false,
"position": 5,
"permission_overwrites": [],
"bitrate": 64000,
"user_limit": 0,
"parent_id": null,
"rtc_region": null
}
{
"last_message_id": "3343820033257021450",
"type": 1,
"id": "319674150115610528",
"recipients": [
{
"username": "test",
"discriminator": "9999",
"id": "82198898841029460",
"avatar": "33ecab261d4681afa4d85a04691c4a01"
}
]
}
{
"name": "Some test channel",
"icon": null,
"recipients": [
{
"username": "test",
"discriminator": "9999",
"id": "82198898841029460",
"avatar": "33ecab261d4681afa4d85a04691c4a01"
},
{
"username": "test2",
"discriminator": "9999",
"id": "82198810841029460",
"avatar": "33ecab261d4681afa4d85a10691c4a01"
}
],
"last_message_id": "3343820033257021450",
"type": 3,
"id": "319674150115710528",
"owner_id": "82198810841029460"
}
{
"permission_overwrites": [],
"name": "Test",
"parent_id": null,
"nsfw": false,
"position": 0,
"guild_id": "290926798629997250",
"type": 4,
"id": "399942396007890945"
}
Threads can be either archived
or active
. Archived threads are generally immutable. To send a message or add a reaction, a thread must first be unarchived. The API will helpfully automatically unarchive a thread when sending a message in that thread.
Unlike with channels, the API will only sync updates to users about threads the current user can view. When receiving a guild create payload, the API will only include active threads the current user can view. Threads inside of private channels are completely private to the members of that private channel. As such, when gaining access to a channel the API sends a thread list sync, which includes all active threads in that channel.
Threads also track membership. Users must be added to a thread before sending messages in them. The API will helpfully automatically add users to a thread when sending a message in that thread.
Guilds have limits on the number of active threads and members per thread. Once these are reached additional threads cannot be created or unarchived, and users cannot be added. Threads do not count against the per-guild channel limit.
The threads topic has some more information.
{
"id": "41771983423143937",
"guild_id": "41771983423143937",
"parent_id": "41771983423143937",
"owner_id": "41771983423143937",
"name": "don't buy dota-2",
"type": 11,
"last_message_id": "155117677105512449",
"message_count": 1,
"member_count": 5,
"rate_limit_per_user": 2,
"thread_metadata": {
"archived": false,
"auto_archive_duration": 1440,
"archive_timestamp": "2021-04-12T23:40:39.855793+00:00",
"locked": false
}
}
Represents a message sent in a channel within Discord.
info Fields specific to the
MESSAGE_CREATE
andMESSAGE_UPDATE
events are listed in the Gateway documentation.
warn
content
,embeds
,attachments
, andcomponents
will require a privileged intent in 2022. Learn more here.
Field | Type | Description |
---|---|---|
id | snowflake | id of the message |
channel_id | snowflake | id of the channel the message was sent in |
author* | user object | the author of this message (not guaranteed to be a valid user, see below) |
content | string | contents of the message |
timestamp | ISO8601 timestamp | when this message was sent |
edited_timestamp | ?ISO8601 timestamp | when this message was edited (or null if never) |
tts | boolean | whether this was a TTS message |
mention_everyone | boolean | whether this message mentions everyone |
mentions | array of user objects | users specifically mentioned in the message |
mention_roles | array of role object ids | roles specifically mentioned in this message |
mention_channels?*** | array of channel mention objects | channels specifically mentioned in this message |
attachments | array of attachment objects | any attached files |
embeds | array of embed objects | any embedded content |
reactions? | array of reaction objects | reactions to the message |
nonce? | integer or string | used for validating a message was sent |
pinned | boolean | whether this message is pinned |
webhook_id? | snowflake | if the message is generated by a webhook, this is the webhook's id |
type | integer | type of message |
activity? | message activity object | sent with Rich Presence-related chat embeds |
application? | partial application object | sent with Rich Presence-related chat embeds |
application_id? | snowflake | if the message is an Interaction or application-owned webhook, this is the id of the application |
message_reference? | message reference object | data showing the source of a crosspost, channel follow add, pin, or reply message |
flags? | integer | message flags combined as a bitfield |
referenced_message?** | ?message object | the message associated with the message_reference |
interaction? | message interaction object | sent if the message is a response to an Interaction |
thread? | channel object | the thread that was started from this message, includes thread member object |
components? | Array of message components | sent if the message contains components like buttons, action rows, or other interactive components |
sticker_items? | array of message sticker item objects | sent if the message contains stickers |
stickers? | array of sticker objects | Deprecated the stickers sent with the message |
* The author object follows the structure of the user object, but is only a valid user in the case where the message is generated by a user or bot user. If the message is generated by a webhook, the author object corresponds to the webhook's id, username, and avatar. You can tell if a message is generated by a webhook by checking for the webhook_id
on the message object.
**\ Not all channel mentions in a message will appear in mention_channels
. Only textual channels that are visible to everyone in a lurkable guild will ever be included. Only crossposted messages (via Channel Following) currently include mention_channels
at all. If no mentions in the message meet these requirements, this field will not be sent.
*** This field is only returned for messages with a type
of 19
(REPLY) or 21
(THREAD_STARTER_MESSAGE). If the message is a reply but the referenced_message
field is not present, the backend did not attempt to fetch the message that was being replied to, so its state is unknown. If the field exists but is null, the referenced message was deleted.
warn Type
19
and20
are only available in API v8 and above. In v6, they are represented as type0
. Additionally, type21
is only available in API v9 and above.
Type | Value |
---|---|
DEFAULT | 0 |
RECIPIENT_ADD | 1 |
RECIPIENT_REMOVE | 2 |
CALL | 3 |
CHANNEL_NAME_CHANGE | 4 |
CHANNEL_ICON_CHANGE | 5 |
CHANNEL_PINNED_MESSAGE | 6 |
GUILD_MEMBER_JOIN | 7 |
USER_PREMIUM_GUILD_SUBSCRIPTION | 8 |
USER_PREMIUM_GUILD_SUBSCRIPTION_TIER_1 | 9 |
USER_PREMIUM_GUILD_SUBSCRIPTION_TIER_2 | 10 |
USER_PREMIUM_GUILD_SUBSCRIPTION_TIER_3 | 11 |
CHANNEL_FOLLOW_ADD | 12 |
GUILD_DISCOVERY_DISQUALIFIED | 14 |
GUILD_DISCOVERY_REQUALIFIED | 15 |
GUILD_DISCOVERY_GRACE_PERIOD_INITIAL_WARNING | 16 |
GUILD_DISCOVERY_GRACE_PERIOD_FINAL_WARNING | 17 |
THREAD_CREATED | 18 |
REPLY | 19 |
CHAT_INPUT_COMMAND | 20 |
THREAD_STARTER_MESSAGE | 21 |
GUILD_INVITE_REMINDER | 22 |
CONTEXT_MENU_COMMAND | 23 |
Field | Type | Description |
---|---|---|
type | integer | type of message activity |
party_id? | string | party_id from a Rich Presence event |
Type | Value |
---|---|
JOIN | 1 |
SPECTATE | 2 |
LISTEN | 3 |
JOIN_REQUEST | 5 |
Flag | Value | Description |
---|---|---|
CROSSPOSTED | 1 << 0 | this message has been published to subscribed channels (via Channel Following) |
IS_CROSSPOST | 1 << 1 | this message originated from a message in another channel (via Channel Following) |
SUPPRESS_EMBEDS | 1 << 2 | do not include any embeds when serializing this message |
SOURCE_MESSAGE_DELETED | 1 << 3 | the source message for this crosspost has been deleted (via Channel Following) |
URGENT | 1 << 4 | this message came from the urgent message system |
HAS_THREAD | 1 << 5 | this message has an associated thread, with the same id as the message |
EPHEMERAL | 1 << 6 | this message is only visible to the user who invoked the Interaction |
LOADING | 1 << 7 | this message is an Interaction Response and the bot is "thinking" |
FAILED_TO_MENTION_SOME_ROLES_IN_THREAD | 1 << 8 | this message failed to mention some roles and add their members to the thread |
{
"reactions": [
{
"count": 1,
"me": false,
"emoji": {
"id": null,
"name": "🔥"
}
}
],
"attachments": [],
"tts": false,
"embeds": [],
"timestamp": "2017-07-11T17:27:07.299000+00:00",
"mention_everyone": false,
"id": "334385199974967042",
"pinned": false,
"edited_timestamp": null,
"author": {
"username": "Mason",
"discriminator": "9999",
"id": "53908099506183680",
"avatar": "a_bab14f271d565501444b2ca3be944b25"
},
"mention_roles": [],
"content": "Supa Hot",
"channel_id": "290926798999357250",
"mentions": [],
"type": 0
}
{
"reactions": [
{
"count": 1,
"me": false,
"emoji": {
"id": null,
"name": "🔥"
}
}
],
"attachments": [],
"tts": false,
"embeds": [],
"timestamp": "2017-07-11T17:27:07.299000+00:00",
"mention_everyone": false,
"id": "334385199974967042",
"pinned": false,
"edited_timestamp": null,
"author": {
"username": "Mason",
"discriminator": "9999",
"id": "53908099506183680",
"avatar": "a_bab14f271d565501444b2ca3be944b25"
},
"mention_roles": [],
"mention_channels": [
{
"id": "278325129692446722",
"guild_id": "278325129692446720",
"name": "big-news",
"type": 5
}
],
"content": "Big news! In this <#278325129692446722> channel!",
"channel_id": "290926798999357250",
"mentions": [],
"type": 0,
"flags": 2,
"message_reference": {
"channel_id": "278325129692446722",
"guild_id": "278325129692446720",
"message_id": "306588351130107906"
}
}
Field | Type | Description |
---|---|---|
message_id? | snowflake | id of the originating message |
channel_id? * | snowflake | id of the originating message's channel |
guild_id? | snowflake | id of the originating message's guild |
fail_if_not_exists? | boolean | when sending, whether to error if the referenced message doesn't exist instead of sending as a normal (non-reply) message, default true |
* channel_id
is optional when creating a reply, but will always be present when receiving an event/response that includes this data model.
There are multiple message types that have a message_reference object. Since message references are generic attribution to a previous message, there will be more types of messages which have this information in the future.
- These are messages that originated from another channel (IS_CROSSPOST flag).
- These messages have all three fields, with data of the original message that was crossposted.
- These are automatic messages sent when a channel is followed into the current channel (type 12).
- These messages have the
channel_id
andguild_id
fields, with data of the followed announcement channel.
- These are automatic messages sent when a message is pinned (type 6).
- These messages have
message_id
andchannel_id
, andguild_id
if it is in a guild, with data of the message that was pinned.
- These are messages replying to a previous message (type 19).
- These messages have
message_id
andchannel_id
, andguild_id
if it is in a guild, with data of the message that was replied to. The channel_id and guild_id will be the same as the reply. - Replies are created by including a message_reference when sending a message. When sending, only
message_id
is required.
- These are the first message in a public thread. They point back to the message in the parent channel from which the thread was started (type 21)
- These messages have
message_id
,channel_id
, andguild_id
. - These messages will never have content, embeds, or attachments, mainly just the
message_reference
andreferenced_message
fields.
Field | Type | Description |
---|---|---|
channel_id | snowflake | source channel id |
webhook_id | snowflake | created target webhook id |
Field | Type | Description |
---|---|---|
count | integer | times this emoji has been used to react |
me | boolean | whether the current user reacted using this emoji |
emoji | partial emoji object | emoji information |
See permissions for more information about the allow
and deny
fields.
Field | Type | Description |
---|---|---|
id | snowflake | role or user id |
type | int | either 0 (role) or 1 (member) |
allow | string | permission bit set |
deny | string | permission bit set |
The thread metadata object contains a number of thread-specific channel fields that are not needed by other channel types.
Field | Type | Description |
---|---|---|
archived | boolean | whether the thread is archived |
auto_archive_duration | integer | duration in minutes to automatically archive the thread after recent activity, can be set to: 60, 1440, 4320, 10080 |
archive_timestamp | ISO8601 timestamp | timestamp when the thread's archive status was last changed, used for calculating recent activity |
locked | boolean | whether the thread is locked; when a thread is locked, only users with MANAGE_THREADS can unarchive it |
invitable? | boolean | whether non-moderators can add other non-moderators to a thread; only available on private threads |
create_timestamp? | ?ISO8601 timestamp | timestamp when the thread was created; only populated for threads created after 2022-01-09 |
A thread member is used to indicate whether a user has joined a thread or not.
Field | Type | Description |
---|---|---|
id? * | snowflake | the id of the thread |
user_id? * | snowflake | the id of the user |
join_timestamp | ISO8601 timestamp | the time the current user last joined the thread |
flags | integer | any user-thread settings, currently only used for notifications |
** * These fields are omitted on the member sent within each thread in the GUILD_CREATE event **
Field | Type | Description |
---|---|---|
title? | string | title of embed |
type? | string | type of embed (always "rich" for webhook embeds) |
description? | string | description of embed |
url? | string | url of embed |
timestamp? | ISO8601 timestamp | timestamp of embed content |
color? | integer | color code of the embed |
footer? | embed footer object | footer information |
image? | embed image object | image information |
thumbnail? | embed thumbnail object | thumbnail information |
video? | embed video object | video information |
provider? | embed provider object | provider information |
author? | embed author object | author information |
fields? | array of embed field objects | fields information |
Embed types are "loosely defined" and, for the most part, are not used by our clients for rendering. Embed attributes power what is rendered. Embed types should be considered deprecated and might be removed in a future API version.
Type | Description |
---|---|
rich | generic embed rendered from embed attributes |
image | image embed |
video | video embed |
gifv | animated gif image embed rendered as a video embed |
article | article embed |
link | link embed |
Field | Type | Description |
---|---|---|
url | string | source url of thumbnail (only supports http(s) and attachments) |
proxy_url? | string | a proxied url of the thumbnail |
height? | integer | height of thumbnail |
width? | integer | width of thumbnail |
Field | Type | Description |
---|---|---|
url? | string | source url of video |
proxy_url? | string | a proxied url of the video |
height? | integer | height of video |
width? | integer | width of video |
Field | Type | Description |
---|---|---|
url | string | source url of image (only supports http(s) and attachments) |
proxy_url? | string | a proxied url of the image |
height? | integer | height of image |
width? | integer | width of image |
Field | Type | Description |
---|---|---|
name? | string | name of provider |
url? | string | url of provider |
Field | Type | Description |
---|---|---|
name | string | name of author |
url? | string | url of author |
icon_url? | string | url of author icon (only supports http(s) and attachments) |
proxy_icon_url? | string | a proxied url of author icon |
Field | Type | Description |
---|---|---|
text | string | footer text |
icon_url? | string | url of footer icon (only supports http(s) and attachments) |
proxy_icon_url? | string | a proxied url of footer icon |
Field | Type | Description |
---|---|---|
name | string | name of the field |
value | string | value of the field |
inline? | boolean | whether or not this field should display inline |
To facilitate showing rich content, rich embeds do not follow the traditional limits of message content. However, some limits are still in place to prevent excessively large embeds. The following table describes the limits:
All of the following limits are measured inclusively. Leading and trailing whitespace characters are not included (they are trimmed automatically).
Field | Limit |
---|---|
title | 256 characters |
description | 4096 characters |
fields | Up to 25 field objects |
field.name | 256 characters |
field.value | 1024 characters |
footer.text | 2048 characters |
author.name | 256 characters |
Additionally, the combined sum of characters in all title
, description
, field.name
, field.value
, footer.text
, and author.name
fields across all embeds attached to a message must not exceed 6000 characters. Violating any of these constraints will result in a Bad Request
response.
info For the
attachments
array in Message Create/Edit requests, only theid
is required.
Field | Type | Description |
---|---|---|
id | snowflake | attachment id |
filename | string | name of file attached |
description? | string | description for the file |
content_type? | string | the attachment's media type |
size | integer | size of file in bytes |
url | string | source url of file |
proxy_url * | string | a proxied url of file |
height? | ?integer | height of file (if image) |
width? | ?integer | width of file (if image) |
ephemeral? ** | boolean | whether this attachment is ephemeral |
* The proxy url only supports attachments which have a defined width
and height
, such as images and videos. For all other attachments, the proxy returns a 415: Unsupported Media Type
error.
** Ephemeral attachments will automatically be removed after a set period of time. Ephemeral attachments on messages are guaranteed to be available as long as the message itself exists.
Field | Type | Description |
---|---|---|
id | snowflake | id of the channel |
guild_id | snowflake | id of the guild containing the channel |
type | integer | the type of channel |
name | string | the name of the channel |
The allowed mention field allows for more granular control over mentions without various hacks to the message content. This will always validate against message content to avoid phantom pings (e.g. to ping everyone, you must still have @everyone
in the message content), and check against user/bot permissions.
Type | Value | Description |
---|---|---|
Role Mentions | "roles" | Controls role mentions |
User Mentions | "users" | Controls user mentions |
Everyone Mentions | "everyone" | Controls @everyone and @here mentions |
Field | Type | Description |
---|---|---|
parse | array of allowed mention types | An array of allowed mention types to parse from the content. |
roles | list of snowflakes | Array of role_ids to mention (Max size of 100) |
users | list of snowflakes | Array of user_ids to mention (Max size of 100) |
replied_user | boolean | For replies, whether to mention the author of the message being replied to (default false) |
Due to the complexity of possibilities, we have included a set of examples and behavior for the allowed mentions field.
If allowed_mentions
is not passed in (i.e. the key does not exist), the mentions will be parsed via the content. This corresponds with existing behavior.
In the example below we would ping @here (and also @role124 and @user123)
{
"content": "@here Hi there from <@123>, cc <@&124>"
}
To suppress all mentions in a message use:
{
"content": "@everyone hi there, <@&123>",
"allowed_mentions": {
"parse": []
}
}
This will suppress all mentions in the message (no @everyone or user mention).
The parse
field is mutually exclusive with the other fields. In the example below, we would ping users 123
and role 124
, but not @everyone. Note that passing a Falsy
value ([], null) into the "users" field does not trigger a validation error.
{
"content": "@everyone <@123> <@&124>",
"allowed_mentions": {
"parse": ["users", "roles"],
"users": []
}
}
In the next example, we would ping @everyone, (and also users 123
and 124
if they suppressed
@everyone mentions), but we would not ping any roles.
{
"content": "@everyone <@123> <@124> <@125> <@&200>",
"allowed_mentions": {
"parse": ["everyone"],
"users": ["123", "124"]
}
}
Due to possible ambiguities, not all configurations are valid. An invalid configuration is as follows
{
"content": "@everyone <@123> <@124> <@125> <@&200>",
"allowed_mentions": {
"parse": ["users"],
"users": ["123", "124"]
}
}
Because parse: ["users"]
and users: [123, 124]
are both present, we would throw a validation error.
This is because the conditions cannot be fulfilled simultaneously (they are mutually exclusive).
Any entities with an ID included in the list of IDs can be mentioned. Note that the IDs of entities not present in the message's content will simply be ignored. e.g. The following example is valid, and would mention user 123, but not user 125 since there is no mention of user 125 in the content.
{
"content": "<@123> Time for some memes.",
"allowed_mentions": {
"users": ["123", "125"]
}
}
Get a channel by ID. Returns a channel object. If the channel is a thread, a thread member object is included in the returned result.
Update a channel's settings. Returns a channel on success, and a 400 BAD REQUEST on invalid parameters. All JSON parameters are optional.
info This endpoint supports the
X-Audit-Log-Reason
header.
Fires a Channel Update Gateway event.
Field | Type | Description |
---|---|---|
name | string | 1-100 character channel name |
icon | binary | base64 encoded icon |
Requires the MANAGE_CHANNELS
permission for the guild. Fires a Channel Update Gateway event. If modifying a category, individual Channel Update events will fire for each child channel that also changes. If modifying permission overwrites, the MANAGE_ROLES
permission is required. Only permissions your bot has in the guild or parent channel (if applicable) can be allowed/denied (unless your bot has a MANAGE_ROLES
overwrite in the channel).
Field | Type | Description | Channel Type |
---|---|---|---|
name | string | 1-100 character channel name | All |
type | integer | the type of channel; only conversion between text and news is supported and only in guilds with the "NEWS" feature | Text, News |
position | ?integer | the position of the channel in the left-hand listing | All |
topic | ?string | 0-1024 character channel topic | Text, News |
nsfw | ?boolean | whether the channel is nsfw | Text, Voice, News |
rate_limit_per_user | ?integer | amount of seconds a user has to wait before sending another message (0-21600); bots, as well as users with the permission manage_messages or manage_channel , are unaffected |
Text |
bitrate* | ?integer | the bitrate (in bits) of the voice or stage channel; min 8000 | Voice, Stage |
user_limit | ?integer | the user limit of the voice channel; 0 refers to no limit, 1 to 99 refers to a user limit | Voice |
permission_overwrites** | ?array of partial overwrite objects | channel or category-specific permissions | All |
parent_id | ?snowflake | id of the new parent category for a channel | Text, Voice, News |
rtc_region | ?string | channel voice region id, automatic when set to null | Voice, Stage |
video_quality_mode | ?integer | the camera video quality mode of the voice channel | Voice |
default_auto_archive_duration | ?integer | the default duration that the clients use (not the API) for newly created threads in the channel, in minutes, to automatically archive the thread after recent activity | Text, News |
* For voice channels, normal servers can set bitrate up to 96000, servers with Boost level 1 can set up to 128000, servers with Boost level 2 can set up to 256000, and servers with Boost level 3 or the VIP_REGIONS
guild feature can set up to 384000. For stage channels, bitrate can be set up to 64000.
** In each overwrite object, the allow
and deny
keys can be omitted or set to null
, which both default to "0"
.
When setting archived
to false
, when locked
is also false
, only the SEND_MESSAGES
permission is required.
Otherwise, requires the MANAGE_THREADS
permission. Fires a Thread Update Gateway event. Requires the thread to have archived
set to false
or be set to false
in the request.
Field | Type | Description |
---|---|---|
name | string | 1-100 character channel name |
archived | boolean | whether the thread is archived |
auto_archive_duration | integer | duration in minutes to automatically archive the thread after recent activity, can be set to: 60, 1440, 4320, 10080 |
locked | boolean | whether the thread is locked; when a thread is locked, only users with MANAGE_THREADS can unarchive it |
invitable | boolean | whether non-moderators can add other non-moderators to a thread; only available on private threads |
rate_limit_per_user | ?integer | amount of seconds a user has to wait before sending another message (0-21600); bots, as well as users with the permission manage_messages , manage_thread , or manage_channel , are unaffected |
flags? | integer | channel flags combined as a bitfield; PINNED can only be set for threads in forum channels |
Delete a channel, or close a private message. Requires the MANAGE_CHANNELS
permission for the guild, or MANAGE_THREADS
if the channel is a thread. Deleting a category does not delete its child channels; they will have their parent_id
removed and a Channel Update Gateway event will fire for each of them. Returns a channel object on success. Fires a Channel Delete Gateway event (or Thread Delete if the channel was a thread).
warn Deleting a guild channel cannot be undone. Use this with caution, as it is impossible to undo this action when performed on a guild channel. In contrast, when used with a private message, it is possible to undo the action by opening a private message with the recipient again.
info For Community guilds, the Rules or Guidelines channel and the Community Updates channel cannot be deleted.
info This endpoint supports the
X-Audit-Log-Reason
header.
Returns the messages for a channel. If operating on a guild channel, this endpoint requires the VIEW_CHANNEL
permission to be present on the current user. If the current user is missing the READ_MESSAGE_HISTORY
permission in the channel then this will return no messages (since they cannot read the message history). Returns an array of message objects on success.
info The
before
,after
, andaround
parameters are mutually exclusive, only one may be passed at a time.
Field | Type | Description | Default |
---|---|---|---|
around? | snowflake | Get messages around this message ID | absent |
before? | snowflake | Get messages before this message ID | absent |
after? | snowflake | Get messages after this message ID | absent |
limit? | integer | Max number of messages to return (1-100) | 50 |
Get Channel Message % GET /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/messages/{message.id#DOCS_RESOURCES_CHANNEL/message-object}
Returns a specific message in the channel. If operating on a guild channel, this endpoint requires the READ_MESSAGE_HISTORY
permission to be present on the current user. Returns a message object on success.
warn Discord may strip certain characters from message content, like invalid unicode characters or characters which cause unexpected message formatting. If you are passing user-generated strings into message content, consider sanitizing the data to prevent unexpected behavior and utilizing
allowed_mentions
to prevent unexpected mentions.
Post a message to a guild text or DM channel. Returns a message object. Fires a Message Create Gateway event. See message formatting for more information on how to properly format messages.
To create a message as a reply to another message, apps can include a message_reference
with a message_id
. The channel_id
and guild_id
in the message_reference
are optional, but will be validated if provided.
Files must be attached using a multipart/form-data
body as described in Uploading Files.
- When operating on a guild channel, the current user must have the
SEND_MESSAGES
permission. - When sending a message with
tts
(text-to-speech) set totrue
, the current user must have theSEND_TTS_MESSAGES
permission. - When creating a message as a reply to another message, the current user must have the
READ_MESSAGE_HISTORY
permission.- The referenced message must exist and cannot be a system message.
- The maximum request size when sending a message is 8MiB
- For the embed object, you can set every field except
type
(it will berich
regardless of if you try to set it),provider
,video
, and anyheight
,width
, orproxy_url
values for images.
info When creating a message, apps must provide a value for at least one of
content
,embeds
,sticker_ids
, orfiles[n]
.
Field | Type | Description |
---|---|---|
content?* | string | Message contents (up to 2000 characters) |
tts? | boolean | true if this is a TTS message |
embeds?* | array of embed objects | Embedded rich content (up to 6000 characters) |
allowed_mentions? | allowed mention object | Allowed mentions for the message |
message_reference? | message reference | Include to make your message a reply |
components? | array of message component objects | Components to include with the message |
sticker_ids?* | array of snowflakes | IDs of up to 3 stickers in the server to send in the message |
files[n]?* | file contents | Contents of the file being sent. See Uploading Files |
payload_json? | string | JSON-encoded body of non-file params, only for multipart/form-data requests. See Uploading Files |
attachments? | array of partial attachment objects | Attachment objects with filename and description. See Uploading Files |
flags? | integer | Message flags combined as a bitfield (only SUPPRESS_EMBEDS can be set) |
* At least one of content
, embeds
, sticker_ids
, or files[n]
is required.
{
"content": "Hello, World!",
"tts": false,
"embeds": [{
"title": "Hello, Embed!",
"description": "This is an embedded message."
}]
}
Examples for file uploads are available in Uploading Files.
Crosspost Message % POST /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/messages/{message.id#DOCS_RESOURCES_CHANNEL/message-object}/crosspost
Crosspost a message in a News Channel to following channels. This endpoint requires the SEND_MESSAGES
permission, if the current user sent the message, or additionally the MANAGE_MESSAGES
permission, for all other messages, to be present for the current user.
Returns a message object.
Create Reaction % PUT /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/messages/{message.id#DOCS_RESOURCES_CHANNEL/message-object}/reactions/{emoji#DOCS_RESOURCES_EMOJI/emoji-object}/@me
Create a reaction for the message. This endpoint requires the READ_MESSAGE_HISTORY
permission to be present on the current user. Additionally, if nobody else has reacted to the message using this emoji, this endpoint requires the ADD_REACTIONS
permission to be present on the current user. Returns a 204 empty response on success.
The emoji
must be URL Encoded or the request will fail with 10014: Unknown Emoji
. To use custom emoji, you must encode it in the format name:id
with the emoji name and emoji id.
Delete Own Reaction % DELETE /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/messages/{message.id#DOCS_RESOURCES_CHANNEL/message-object}/reactions/{emoji#DOCS_RESOURCES_EMOJI/emoji-object}/@me
Delete a reaction the current user has made for the message. Returns a 204 empty response on success.
The emoji
must be URL Encoded or the request will fail with 10014: Unknown Emoji
. To use custom emoji, you must encode it in the format name:id
with the emoji name and emoji id.
Delete User Reaction % DELETE /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/messages/{message.id#DOCS_RESOURCES_CHANNEL/message-object}/reactions/{emoji#DOCS_RESOURCES_EMOJI/emoji-object}/{user.id#DOCS_RESOURCES_USER/user-object}
Deletes another user's reaction. This endpoint requires the MANAGE_MESSAGES
permission to be present on the current user. Returns a 204 empty response on success.
The emoji
must be URL Encoded or the request will fail with 10014: Unknown Emoji
. To use custom emoji, you must encode it in the format name:id
with the emoji name and emoji id.
Get Reactions % GET /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/messages/{message.id#DOCS_RESOURCES_CHANNEL/message-object}/reactions/{emoji#DOCS_RESOURCES_EMOJI/emoji-object}
Get a list of users that reacted with this emoji. Returns an array of user objects on success.
The emoji
must be URL Encoded or the request will fail with 10014: Unknown Emoji
. To use custom emoji, you must encode it in the format name:id
with the emoji name and emoji id.
Field | Type | Description | Default |
---|---|---|---|
after? | snowflake | Get users after this user ID | absent |
limit? | integer | Max number of users to return (1-100) | 25 |
Delete All Reactions % DELETE /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/messages/{message.id#DOCS_RESOURCES_CHANNEL/message-object}/reactions
Deletes all reactions on a message. This endpoint requires the MANAGE_MESSAGES
permission to be present on the current user. Fires a Message Reaction Remove All Gateway event.
Delete All Reactions for Emoji % DELETE /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/messages/{message.id#DOCS_RESOURCES_CHANNEL/message-object}/reactions/{emoji#DOCS_RESOURCES_EMOJI/emoji-object}
Deletes all the reactions for a given emoji on a message. This endpoint requires the MANAGE_MESSAGES
permission to be present on the current user. Fires a Message Reaction Remove Emoji Gateway event.
The emoji
must be URL Encoded or the request will fail with 10014: Unknown Emoji
. To use custom emoji, you must encode it in the format name:id
with the emoji name and emoji id.
Edit Message % PATCH /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/messages/{message.id#DOCS_RESOURCES_CHANNEL/message-object}
Edit a previously sent message. The fields content
, embeds
, and flags
can be edited by the original message author. Other users can only edit flags
and only if they have the MANAGE_MESSAGES
permission in the corresponding channel. When specifying flags, ensure to include all previously set flags/bits in addition to ones that you are modifying. Only flags
documented in the table below may be modified by users (unsupported flag changes are currently ignored without error).
When the content
field is edited, the mentions
array in the message object will be reconstructed from scratch based on the new content. The allowed_mentions
field of the edit request controls how this happens. If there is no explicit allowed_mentions
in the edit request, the content will be parsed with default allowances, that is, without regard to whether or not an allowed_mentions
was present in the request that originally created the message.
Returns a message object. Fires a Message Update Gateway event.
Refer to Uploading Files for details on attachments and multipart/form-data
requests.
Any provided files will be appended to the message. To remove or replace files you will have to supply the attachments
field which specifies the files to retain on the message after edit.
warn Starting with API v10, the
attachments
array must contain all attachments that should be present after edit, including retained and new attachments provided in the request body.
info All parameters to this endpoint are optional and nullable.
Field | Type | Description |
---|---|---|
content | string | Message contents (up to 2000 characters) |
embeds | array of embed objects | Embedded rich content (up to 6000 characters) |
embed (deprecated) | embed object | Embedded rich content, deprecated in favor of embeds |
flags | integer | Edit the flags of a message (only SUPPRESS_EMBEDS can currently be set/unset) |
allowed_mentions | allowed mention object | Allowed mentions for the message |
components | array of message component | Components to include with the message |
files[n] | file contents | Contents of the file being sent/edited. See Uploading Files |
payload_json | string | JSON-encoded body of non-file params (multipart/form-data only). See Uploading Files |
attachments | array of attachment objects | Attached files to keep and possible descriptions for new files. See Uploading Files |
Delete Message % DELETE /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/messages/{message.id#DOCS_RESOURCES_CHANNEL/message-object}
Delete a message. If operating on a guild channel and trying to delete a message that was not sent by the current user, this endpoint requires the MANAGE_MESSAGES
permission. Returns a 204 empty response on success. Fires a Message Delete Gateway event.
info This endpoint supports the
X-Audit-Log-Reason
header.
Bulk Delete Messages % POST /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/messages/bulk-delete
Delete multiple messages in a single request. This endpoint can only be used on guild channels and requires the MANAGE_MESSAGES
permission. Returns a 204 empty response on success. Fires a Message Delete Bulk Gateway event.
Any message IDs given that do not exist or are invalid will count towards the minimum and maximum message count (currently 2 and 100 respectively).
warn This endpoint will not delete messages older than 2 weeks, and will fail with a 400 BAD REQUEST if any message provided is older than that or if any duplicate message IDs are provided.
info This endpoint supports the
X-Audit-Log-Reason
header.
Field | Type | Description |
---|---|---|
messages | array of snowflakes | an array of message ids to delete (2-100) |
Edit Channel Permissions % PUT /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/permissions/{overwrite.id#DOCS_RESOURCES_CHANNEL/overwrite-object}
Edit the channel permission overwrites for a user or role in a channel. Only usable for guild channels. Requires the MANAGE_ROLES
permission. Only permissions your bot has in the guild or parent channel (if applicable) can be allowed/denied (unless your bot has a MANAGE_ROLES
overwrite in the channel). Returns a 204 empty response on success. For more information about permissions, see permissions.
info This endpoint supports the
X-Audit-Log-Reason
header.
Field | Type | Description |
---|---|---|
allow? | string? | the bitwise value of all allowed permissions (default "0" ) |
deny? | string? | the bitwise value of all disallowed permissions (default "0" ) |
type | integer | 0 for a role or 1 for a member |
Returns a list of invite objects (with invite metadata) for the channel. Only usable for guild channels. Requires the MANAGE_CHANNELS
permission.
Create a new invite object for the channel. Only usable for guild channels. Requires the CREATE_INSTANT_INVITE
permission. All JSON parameters for this route are optional, however the request body is not. If you are not sending any fields, you still have to send an empty JSON object ({}
). Returns an invite object. Fires an Invite Create Gateway event.
info This endpoint supports the
X-Audit-Log-Reason
header.
Field | Type | Description | Default |
---|---|---|---|
max_age | integer | duration of invite in seconds before expiry, or 0 for never. between 0 and 604800 (7 days) | 86400 (24 hours) |
max_uses | integer | max number of uses or 0 for unlimited. between 0 and 100 | 0 |
temporary | boolean | whether this invite only grants temporary membership | false |
unique | boolean | if true, don't try to reuse a similar invite (useful for creating many unique one time use invites) | false |
target_type | integer | the type of target for this voice channel invite | |
target_user_id | snowflake | the id of the user whose stream to display for this invite, required if target_type is 1, the user must be streaming in the channel |
|
target_application_id | snowflake | the id of the embedded application to open for this invite, required if target_type is 2, the application must have the EMBEDDED flag |
Delete Channel Permission % DELETE /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/permissions/{overwrite.id#DOCS_RESOURCES_CHANNEL/overwrite-object}
Delete a channel permission overwrite for a user or role in a channel. Only usable for guild channels. Requires the MANAGE_ROLES
permission. Returns a 204 empty response on success. For more information about permissions, see permissions
info This endpoint supports the
X-Audit-Log-Reason
header.
Follow a News Channel to send messages to a target channel. Requires the MANAGE_WEBHOOKS
permission in the target channel. Returns a followed channel object.
Field | Type | Description |
---|---|---|
webhook_channel_id | snowflake | id of target channel |
Post a typing indicator for the specified channel. Generally bots should not implement this route. However, if a bot is responding to a command and expects the computation to take a few seconds, this endpoint may be called to let the user know that the bot is processing their message. Returns a 204 empty response on success. Fires a Typing Start Gateway event.
Returns all pinned messages in the channel as an array of message objects.
Pin Message % PUT /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/pins/{message.id#DOCS_RESOURCES_CHANNEL/message-object}
Pin a message in a channel. Requires the MANAGE_MESSAGES
permission. Returns a 204 empty response on success.
warn The max pinned messages is 50.
info This endpoint supports the
X-Audit-Log-Reason
header.
Unpin Message % DELETE /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/pins/{message.id#DOCS_RESOURCES_CHANNEL/message-object}
Unpin a message in a channel. Requires the MANAGE_MESSAGES
permission. Returns a 204 empty response on success.
info This endpoint supports the
X-Audit-Log-Reason
header.
Group DM Add Recipient % PUT /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/recipients/{user.id#DOCS_RESOURCES_USER/user-object}
Adds a recipient to a Group DM using their access token.
Field | Type | Description |
---|---|---|
access_token | string | access token of a user that has granted your app the gdm.join scope |
nick | string | nickname of the user being added |
Group DM Remove Recipient % DELETE /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/recipients/{user.id#DOCS_RESOURCES_USER/user-object}
Removes a recipient from a Group DM.
Start Thread from Message % POST /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/messages/{message.id#DOCS_RESOURCES_CHANNEL/message-object}/threads
Creates a new thread from an existing message. Returns a channel on success, and a 400 BAD REQUEST on invalid parameters. Fires a Thread Create Gateway event.
When called on a GUILD_TEXT
channel, creates a GUILD_PUBLIC_THREAD
. When called on a GUILD_NEWS
channel, creates a GUILD_NEWS_THREAD
. Does not work on a GUILD_FORUM
channel. The id of the created thread will be the same as the id of the source message, and as such a message can only have a single thread created from it.
info This endpoint supports the
X-Audit-Log-Reason
header.
Field | Type | Description |
---|---|---|
name | string | 1-100 character channel name |
auto_archive_duration? | integer | duration in minutes to automatically archive the thread after recent activity, can be set to: 60, 1440, 4320, 10080 |
rate_limit_per_user? | ?integer | amount of seconds a user has to wait before sending another message (0-21600) |
Start Thread without Message % POST /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/threads
Creates a new thread that is not connected to an existing message. Returns a channel on success, and a 400 BAD REQUEST on invalid parameters. Fires a Thread Create Gateway event.
info This endpoint supports the
X-Audit-Log-Reason
header.
info Creating a private thread requires the server to be boosted. The guild features will indicate if that is possible for the guild.
Field | Type | Description |
---|---|---|
name | string | 1-100 character channel name |
auto_archive_duration? | integer | duration in minutes to automatically archive the thread after recent activity, can be set to: 60, 1440, 4320, 10080 |
type?* | integer | the type of thread to create |
invitable? | boolean | whether non-moderators can add other non-moderators to a thread; only available when creating a private thread |
rate_limit_per_user? | ?integer | amount of seconds a user has to wait before sending another message (0-21600) |
* type
currently defaults to GUILD_PRIVATE_THREAD
in order to match the behavior when thread documentation was first published. In a future API version this will be changed to be a required field, with no default.
Start Thread in Forum Channel % POST /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/threads
Creates a new thread in a forum channel, and sends a message within the created thread. Returns a channel, with a nested message object, on success, and a 400 BAD REQUEST on invalid parameters. Fires a Thread Create and Message Create Gateway event.
- The type of the created thread is
GUILD_PUBLIC_THREAD
. - See message formatting for more information on how to properly format messages.
- The current user must have the
SEND_MESSAGES
permission (CREATE_PUBLIC_THREADS
is ignored). - The maximum request size when sending a message is 8MiB.
- For the embed object, you can set every field except
type
(it will berich
regardless of if you try to set it),provider
,video
, and anyheight
,width
, orproxy_url
values for images. - Examples for file uploads are available in Uploading Files.
- Files must be attached using a
multipart/form-data
body as described in Uploading Files. - Note that when sending a message, you must provide a value for at least one of
content
,embeds
, orfiles[n]
.
warn Discord may strip certain characters from message content, like invalid unicode characters or characters which cause unexpected message formatting. If you are passing user-generated strings into message content, consider sanitizing the data to prevent unexpected behavior and utilizing
allowed_mentions
to prevent unexpected mentions.
info This endpoint supports the
X-Audit-Log-Reason
header.
Field | Type | Description |
---|---|---|
name | string | 1-100 character channel name |
auto_archive_duration?* | integer | duration in minutes to automatically archive the thread after recent activity, can be set to: 60, 1440, 4320, 10080 |
rate_limit_per_user? | ?integer | amount of seconds a user has to wait before sending another message (0-21600) |
message | a forum thread message params object | contents of the first message in the forum thread |
info When sending a message, apps must provide a value for at least one of
content
,embeds
,files[n]
, orsticker_ids
.
Field | Type | Description |
---|---|---|
content?* | string | Message contents (up to 2000 characters) |
embeds? | array of embed objects | Embedded rich content (up to 6000 characters) |
allowed_mentions? | allowed mention object | Allowed mentions for the message |
components? | array of message component objects | Components to include with the message |
sticker_ids?* | array of snowflakes | IDs of up to 3 stickers in the server to send in the message |
files[n]* | file contents | Contents of the file being sent. See Uploading Files |
payload_json? | string | JSON-encoded body of non-file params, only for multipart/form-data requests. See Uploading Files |
attachments? | array of partial attachment objects | Attachment objects with filename and description . See Uploading Files |
flags? | integer | Message flags combined as a bitfield (only SUPPRESS_EMBEDS can be set) |
* At least one of content
, embeds
, files[n]
, or sticker_ids
is required.
Adds the current user to a thread. Also requires the thread is not archived. Returns a 204 empty response on success. Fires a Thread Members Update Gateway event.
Add Thread Member % PUT /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/thread-members/{user.id#DOCS_RESOURCES_USER/user-object}
Adds another member to a thread. Requires the ability to send messages in the thread. Also requires the thread is not archived. Returns a 204 empty response if the member is successfully added or was already a member of the thread. Fires a Thread Members Update Gateway event.
Leave Thread % DELETE /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/thread-members/@me
Removes the current user from a thread. Also requires the thread is not archived. Returns a 204 empty response on success. Fires a Thread Members Update Gateway event.
Remove Thread Member % DELETE /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/thread-members/{user.id#DOCS_RESOURCES_USER/user-object}
Removes another member from a thread. Requires the MANAGE_THREADS
permission, or the creator of the thread if it is a GUILD_PRIVATE_THREAD
. Also requires the thread is not archived. Returns a 204 empty response on success. Fires a Thread Members Update Gateway event.
Get Thread Member % GET /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/thread-members/{user.id#DOCS_RESOURCES_USER/user-object}
Returns a thread member object for the specified user if they are a member of the thread, returns a 404 response otherwise.
List Thread Members % GET /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/thread-members
Returns array of thread members objects that are members of the thread.
warn This endpoint is restricted according to whether the
GUILD_MEMBERS
Privileged Intent is enabled for your application.
List Public Archived Threads % GET /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/threads/archived/public
Returns archived threads in the channel that are public. When called on a GUILD_TEXT
channel, returns threads of type GUILD_PUBLIC_THREAD
. When called on a GUILD_NEWS
channel returns threads of type GUILD_NEWS_THREAD
. Threads are ordered by archive_timestamp
, in descending order. Requires the READ_MESSAGE_HISTORY
permission.
Field | Type | Description |
---|---|---|
before? | ISO8601 timestamp | returns threads before this timestamp |
limit? | integer | optional maximum number of threads to return |
Field | Type | Description |
---|---|---|
threads | array of channel objects | the public, archived threads |
members | array of thread members objects | a thread member object for each returned thread the current user has joined |
has_more | boolean | whether there are potentially additional threads that could be returned on a subsequent call |
List Private Archived Threads % GET /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/threads/archived/private
Returns archived threads in the channel that are of type GUILD_PRIVATE_THREAD
. Threads are ordered by archive_timestamp
, in descending order. Requires both the READ_MESSAGE_HISTORY
and MANAGE_THREADS
permissions.
Field | Type | Description |
---|---|---|
before? | ISO8601 timestamp | returns threads before this timestamp |
limit? | integer | optional maximum number of threads to return |
Field | Type | Description |
---|---|---|
threads | array of channel objects | the private, archived threads |
members | array of thread members objects | a thread member object for each returned thread the current user has joined |
has_more | boolean | whether there are potentially additional threads that could be returned on a subsequent call |
List Joined Private Archived Threads % GET /channels/{channel.id#DOCS_RESOURCES_CHANNEL/channel-object}/users/@me/threads/archived/private
Returns archived threads in the channel that are of type GUILD_PRIVATE_THREAD
, and the user has joined. Threads are ordered by their id
, in descending order. Requires the READ_MESSAGE_HISTORY
permission.
Field | Type | Description |
---|---|---|
before? | snowflake | returns threads before this id |
limit? | integer | optional maximum number of threads to return |
Field | Type | Description |
---|---|---|
threads | array of channel objects | the private, archived threads the current user has joined |
members | array of thread members objects | a thread member object for each returned thread the current user has joined |
has_more | boolean | whether there are potentially additional threads that could be returned on a subsequent call |