Commit 57a5077
authored
[docs] Message Forwards feature (#6818)
Add documentation for message forwards.
A message forward gives users the ability to send a snapshot of a message in one channel to another channel.
- snapshots are immutable, and do not receive updates from the original message (unlike replies)
- similar to a REPLY message, a forward is created using a `message_reference`
[DDevs #api-announcement](https://canary.discord.com/channels/613425648685547541/697138785317814292/1233463756160503859) - thread there
# Examples
## Creates
```json
{
message_reference": {
"type": 1, // FORWARD
"message_id": "123456789012345678",
"channel_id": "123456789012345678",
"guild_id": "123456789012345678"
},
}
```
## Responses
```json
{
"author": {
"id": 123456789012345678,
},
"message_reference": {
"type": 1, // FORWARD
"message_id": "123456789012345678",
"channel_id": "123456789012345678",
"guild_id": "123456789012345678"
},
"message_snapshots": [
{
"content": "hello world",
"embeds": [
// Embed objects
],
"attachments": [
// Attachment objects
]
}
]
}
```1 parent b1449c3 commit 57a5077
File tree
3 files changed
+123
-70
lines changed- docs
- interactions
- resources
- topics
3 files changed
+123
-70
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
153 | 153 | | |
154 | 154 | | |
155 | 155 | | |
156 | | - | |
| 156 | + | |
157 | 157 | | |
158 | 158 | | |
159 | 159 | | |
| |||
0 commit comments