From 6f636e45617101dbef6934d1367e0b2b9f7787e8 Mon Sep 17 00:00:00 2001 From: Beck Date: Thu, 5 Jun 2025 13:42:39 -0400 Subject: [PATCH 01/13] Update receiving-and-responding.mdx `IS_COMPONENTS_V2` allowed as interaction message callback --- docs/interactions/receiving-and-responding.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index 6a8bfc7640..87e2ee5291 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -249,7 +249,7 @@ Not all message fields are currently supported. | content? | string | Message content | | embeds? | array of [embeds](/docs/resources/message#embed-object) | Supports up to 10 embeds | | allowed_mentions? | [allowed mentions](/docs/resources/message#allowed-mentions-object) | [Allowed mentions](/docs/resources/message#allowed-mentions-object) object | -| flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, and `SUPPRESS_NOTIFICATIONS` can be set) | +| flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2` and `SUPPRESS_NOTIFICATIONS` can be set) | | components? | array of [components](/docs/components/reference#component-object) | Message components | | attachments? \*\* | array of partial [attachment](/docs/resources/message#attachment-object) objects | Attachment objects with filename and description | | poll? | [poll](/docs/resources/poll#poll-create-request-object) request object | Details about the poll | From ab93209ee48329c081634af2ce7bc3c8af5c2ee2 Mon Sep 17 00:00:00 2001 From: c-bec-k Date: Thu, 5 Jun 2025 14:01:21 -0400 Subject: [PATCH 02/13] Added dangling comma, fixed tables --- .../interactions/receiving-and-responding.mdx | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index 87e2ee5291..c96b88ff9e 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -243,16 +243,16 @@ There are a number of ways you can respond to an interaction: Not all message fields are currently supported. -| Field | Type | Description | -|-------------------|----------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| tts? | boolean | Whether the response is TTS | -| content? | string | Message content | -| embeds? | array of [embeds](/docs/resources/message#embed-object) | Supports up to 10 embeds | -| allowed_mentions? | [allowed mentions](/docs/resources/message#allowed-mentions-object) | [Allowed mentions](/docs/resources/message#allowed-mentions-object) object | -| flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2` and `SUPPRESS_NOTIFICATIONS` can be set) | -| components? | array of [components](/docs/components/reference#component-object) | Message components | -| attachments? \*\* | array of partial [attachment](/docs/resources/message#attachment-object) objects | Attachment objects with filename and description | -| poll? | [poll](/docs/resources/poll#poll-create-request-object) request object | Details about the poll | +| Field | Type | Description | +|-------------------|----------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| tts? | boolean | Whether the response is TTS | +| content? | string | Message content | +| embeds? | array of [embeds](/docs/resources/message#embed-object) | Supports up to 10 embeds | +| allowed_mentions? | [allowed mentions](/docs/resources/message#allowed-mentions-object) | [Allowed mentions](/docs/resources/message#allowed-mentions-object) object | +| flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2`, and `SUPPRESS_NOTIFICATIONS` can be set) | +| components? | array of [components](/docs/components/reference#component-object) | Message components | +| attachments? \*\* | array of partial [attachment](/docs/resources/message#attachment-object) objects | Attachment objects with filename and description | +| poll? | [poll](/docs/resources/poll#poll-create-request-object) request object | Details about the poll | \* If you create a callback with the [type](/docs/interactions/receiving-and-responding#interaction-response-object-interaction-callback-type) `DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE` the only valid [message flag](/docs/resources/message#message-object-message-flags) you may use is `EPHEMERAL`. If you'd like to create a component based message with `IS_COMPONENTS_V2` you must do that with the [followup](/docs/interactions/receiving-and-responding#followup-messages) message, not this one. From ef04b931759872a114fc9c739b09558b1e1cbeba Mon Sep 17 00:00:00 2001 From: c-bec-k Date: Mon, 9 Jun 2025 20:39:43 -0400 Subject: [PATCH 03/13] Added `IS_VOICE_MESSAGE` --- .../interactions/receiving-and-responding.mdx | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index c96b88ff9e..f950c2c760 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -243,16 +243,16 @@ There are a number of ways you can respond to an interaction: Not all message fields are currently supported. -| Field | Type | Description | -|-------------------|----------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| tts? | boolean | Whether the response is TTS | -| content? | string | Message content | -| embeds? | array of [embeds](/docs/resources/message#embed-object) | Supports up to 10 embeds | -| allowed_mentions? | [allowed mentions](/docs/resources/message#allowed-mentions-object) | [Allowed mentions](/docs/resources/message#allowed-mentions-object) object | -| flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2`, and `SUPPRESS_NOTIFICATIONS` can be set) | -| components? | array of [components](/docs/components/reference#component-object) | Message components | -| attachments? \*\* | array of partial [attachment](/docs/resources/message#attachment-object) objects | Attachment objects with filename and description | -| poll? | [poll](/docs/resources/poll#poll-create-request-object) request object | Details about the poll | +| Field | Type | Description | +|-------------------|----------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| tts? | boolean | Whether the response is TTS | +| content? | string | Message content | +| embeds? | array of [embeds](/docs/resources/message#embed-object) | Supports up to 10 embeds | +| allowed_mentions? | [allowed mentions](/docs/resources/message#allowed-mentions-object) | [Allowed mentions](/docs/resources/message#allowed-mentions-object) object | +| flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2`, IS_VOICE_MESSAGE, and `SUPPRESS_NOTIFICATIONS` can be set) | +| components? | array of [components](/docs/components/reference#component-object) | Message components | +| attachments? \*\* | array of partial [attachment](/docs/resources/message#attachment-object) objects | Attachment objects with filename and description | +| poll? | [poll](/docs/resources/poll#poll-create-request-object) request object | Details about the poll | \* If you create a callback with the [type](/docs/interactions/receiving-and-responding#interaction-response-object-interaction-callback-type) `DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE` the only valid [message flag](/docs/resources/message#message-object-message-flags) you may use is `EPHEMERAL`. If you'd like to create a component based message with `IS_COMPONENTS_V2` you must do that with the [followup](/docs/interactions/receiving-and-responding#followup-messages) message, not this one. From d6192ea3ecdf4d971d4fd6268adf6e3aabd3e725 Mon Sep 17 00:00:00 2001 From: Anthony Date: Tue, 10 Jun 2025 08:50:50 -0700 Subject: [PATCH 04/13] Update docs/interactions/receiving-and-responding.mdx --- docs/interactions/receiving-and-responding.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index f950c2c760..ef048bba2a 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -249,7 +249,7 @@ Not all message fields are currently supported. | content? | string | Message content | | embeds? | array of [embeds](/docs/resources/message#embed-object) | Supports up to 10 embeds | | allowed_mentions? | [allowed mentions](/docs/resources/message#allowed-mentions-object) | [Allowed mentions](/docs/resources/message#allowed-mentions-object) object | -| flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2`, IS_VOICE_MESSAGE, and `SUPPRESS_NOTIFICATIONS` can be set) | +| flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2`, `IS_VOICE_MESSAGE`, and `SUPPRESS_NOTIFICATIONS` can be set) | | components? | array of [components](/docs/components/reference#component-object) | Message components | | attachments? \*\* | array of partial [attachment](/docs/resources/message#attachment-object) objects | Attachment objects with filename and description | | poll? | [poll](/docs/resources/poll#poll-create-request-object) request object | Details about the poll | From 8504a4b10e9ccaf21468f19cb9f4b22d45a07ae3 Mon Sep 17 00:00:00 2001 From: Anthony Date: Tue, 10 Jun 2025 08:52:15 -0700 Subject: [PATCH 05/13] Update docs/interactions/receiving-and-responding.mdx --- docs/interactions/receiving-and-responding.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index ef048bba2a..d9ca52d725 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -244,7 +244,7 @@ Not all message fields are currently supported. | Field | Type | Description | -|-------------------|----------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +|-------------------|----------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | tts? | boolean | Whether the response is TTS | | content? | string | Message content | | embeds? | array of [embeds](/docs/resources/message#embed-object) | Supports up to 10 embeds | From 3459a4dfce1a93979208faf41b80b2a6f3019c9c Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 12 Jun 2025 10:42:36 -0700 Subject: [PATCH 06/13] Update docs/interactions/receiving-and-responding.mdx --- docs/interactions/receiving-and-responding.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index d9ca52d725..79f7105a05 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -243,7 +243,8 @@ There are a number of ways you can respond to an interaction: Not all message fields are currently supported. -| Field | Type | Description | +| Field | Type | Description + | |-------------------|----------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | tts? | boolean | Whether the response is TTS | | content? | string | Message content | From b83f1f9f342abbac93b3f11ad271a0a3cc3f19a2 Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 12 Jun 2025 10:42:44 -0700 Subject: [PATCH 07/13] Update docs/interactions/receiving-and-responding.mdx --- docs/interactions/receiving-and-responding.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index 79f7105a05..fc71329d3f 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -246,7 +246,8 @@ Not all message fields are currently supported. | Field | Type | Description | |-------------------|----------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| tts? | boolean | Whether the response is TTS | +| tts? | boolean | Whether the response is TTS + | | content? | string | Message content | | embeds? | array of [embeds](/docs/resources/message#embed-object) | Supports up to 10 embeds | | allowed_mentions? | [allowed mentions](/docs/resources/message#allowed-mentions-object) | [Allowed mentions](/docs/resources/message#allowed-mentions-object) object | From 951517a7d1ddd781705a9fe5a2937b5fd9a0f85a Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 12 Jun 2025 10:42:49 -0700 Subject: [PATCH 08/13] Update docs/interactions/receiving-and-responding.mdx --- docs/interactions/receiving-and-responding.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index fc71329d3f..ce8654e09b 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -248,7 +248,8 @@ Not all message fields are currently supported. |-------------------|----------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | tts? | boolean | Whether the response is TTS | -| content? | string | Message content | +| content? | string | Message content + | | embeds? | array of [embeds](/docs/resources/message#embed-object) | Supports up to 10 embeds | | allowed_mentions? | [allowed mentions](/docs/resources/message#allowed-mentions-object) | [Allowed mentions](/docs/resources/message#allowed-mentions-object) object | | flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2`, `IS_VOICE_MESSAGE`, and `SUPPRESS_NOTIFICATIONS` can be set) | From 669948c1a39fe434f2ec9e32c02e3d6700c46d4a Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 12 Jun 2025 10:42:55 -0700 Subject: [PATCH 09/13] Update docs/interactions/receiving-and-responding.mdx --- docs/interactions/receiving-and-responding.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index ce8654e09b..4c8344cda9 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -250,7 +250,8 @@ Not all message fields are currently supported. | | content? | string | Message content | -| embeds? | array of [embeds](/docs/resources/message#embed-object) | Supports up to 10 embeds | +| embeds? | array of [embeds](/docs/resources/message#embed-object) | Supports up to 10 embeds + | | allowed_mentions? | [allowed mentions](/docs/resources/message#allowed-mentions-object) | [Allowed mentions](/docs/resources/message#allowed-mentions-object) object | | flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2`, `IS_VOICE_MESSAGE`, and `SUPPRESS_NOTIFICATIONS` can be set) | | components? | array of [components](/docs/components/reference#component-object) | Message components | From 8ba2393a2bfd520eadaab69604bf06235fcbc8fc Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 12 Jun 2025 10:43:00 -0700 Subject: [PATCH 10/13] Update docs/interactions/receiving-and-responding.mdx --- docs/interactions/receiving-and-responding.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index 4c8344cda9..f7175e5287 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -252,7 +252,8 @@ Not all message fields are currently supported. | | embeds? | array of [embeds](/docs/resources/message#embed-object) | Supports up to 10 embeds | -| allowed_mentions? | [allowed mentions](/docs/resources/message#allowed-mentions-object) | [Allowed mentions](/docs/resources/message#allowed-mentions-object) object | +| allowed_mentions? | [allowed mentions](/docs/resources/message#allowed-mentions-object) | [Allowed mentions](/docs/resources/message#allowed-mentions-object) object + | | flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2`, `IS_VOICE_MESSAGE`, and `SUPPRESS_NOTIFICATIONS` can be set) | | components? | array of [components](/docs/components/reference#component-object) | Message components | | attachments? \*\* | array of partial [attachment](/docs/resources/message#attachment-object) objects | Attachment objects with filename and description | From 88d440d6fefd568a823552d80e1fd97099a1a206 Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 12 Jun 2025 10:43:06 -0700 Subject: [PATCH 11/13] Update docs/interactions/receiving-and-responding.mdx --- docs/interactions/receiving-and-responding.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index f7175e5287..41e9b34963 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -255,7 +255,8 @@ Not all message fields are currently supported. | allowed_mentions? | [allowed mentions](/docs/resources/message#allowed-mentions-object) | [Allowed mentions](/docs/resources/message#allowed-mentions-object) object | | flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2`, `IS_VOICE_MESSAGE`, and `SUPPRESS_NOTIFICATIONS` can be set) | -| components? | array of [components](/docs/components/reference#component-object) | Message components | +| components? | array of [components](/docs/components/reference#component-object) | Message components + | | attachments? \*\* | array of partial [attachment](/docs/resources/message#attachment-object) objects | Attachment objects with filename and description | | poll? | [poll](/docs/resources/poll#poll-create-request-object) request object | Details about the poll | From 243f2ea017a5c80edc1575c9b2ce96a1f14c36d3 Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 12 Jun 2025 10:43:12 -0700 Subject: [PATCH 12/13] Update docs/interactions/receiving-and-responding.mdx --- docs/interactions/receiving-and-responding.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index 41e9b34963..8e8d0610e1 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -257,7 +257,8 @@ Not all message fields are currently supported. | flags? \* | integer | [Message flags](/docs/resources/message#message-object-message-flags) combined as a [bitfield](https://en.wikipedia.org/wiki/Bit_field) (only `SUPPRESS_EMBEDS`, `EPHEMERAL`, `IS_COMPONENTS_V2`, `IS_VOICE_MESSAGE`, and `SUPPRESS_NOTIFICATIONS` can be set) | | components? | array of [components](/docs/components/reference#component-object) | Message components | -| attachments? \*\* | array of partial [attachment](/docs/resources/message#attachment-object) objects | Attachment objects with filename and description | +| attachments? \*\* | array of partial [attachment](/docs/resources/message#attachment-object) objects | Attachment objects with filename and description + | | poll? | [poll](/docs/resources/poll#poll-create-request-object) request object | Details about the poll | \* If you create a callback with the [type](/docs/interactions/receiving-and-responding#interaction-response-object-interaction-callback-type) `DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE` the only valid [message flag](/docs/resources/message#message-object-message-flags) you may use is `EPHEMERAL`. If you'd like to create a component based message with `IS_COMPONENTS_V2` you must do that with the [followup](/docs/interactions/receiving-and-responding#followup-messages) message, not this one. From 5c1419a68a86f712e44d575f530e30c24b4ca283 Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 12 Jun 2025 10:43:17 -0700 Subject: [PATCH 13/13] Update docs/interactions/receiving-and-responding.mdx --- docs/interactions/receiving-and-responding.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/interactions/receiving-and-responding.mdx b/docs/interactions/receiving-and-responding.mdx index 8e8d0610e1..7fc911c3cc 100644 --- a/docs/interactions/receiving-and-responding.mdx +++ b/docs/interactions/receiving-and-responding.mdx @@ -259,7 +259,8 @@ Not all message fields are currently supported. | | attachments? \*\* | array of partial [attachment](/docs/resources/message#attachment-object) objects | Attachment objects with filename and description | -| poll? | [poll](/docs/resources/poll#poll-create-request-object) request object | Details about the poll | +| poll? | [poll](/docs/resources/poll#poll-create-request-object) request object | Details about the poll + | \* If you create a callback with the [type](/docs/interactions/receiving-and-responding#interaction-response-object-interaction-callback-type) `DEFERRED_CHANNEL_MESSAGE_WITH_SOURCE` the only valid [message flag](/docs/resources/message#message-object-message-flags) you may use is `EPHEMERAL`. If you'd like to create a component based message with `IS_COMPONENTS_V2` you must do that with the [followup](/docs/interactions/receiving-and-responding#followup-messages) message, not this one.