Reference
Remy Reference/agent/discordSendFollowUp
?

discordSendFollowUp

Send a follow-up message to a Discord slash command interaction.
mindstudio.discordSendFollowUp({ applicationId, interactionToken, text }) → Result

Sends a follow-up message to a Discord slash-command interaction — how you reply after the initial acknowledgement, within the interaction's window.

Parameters
applicationId
string
RequiredDiscord application ID from the bot registration
interactionToken
string
RequiredInteraction token provided by the Discord trigger — expires after 15 minutes
text
string
RequiredMessage text to send as a follow-up
attachmentUrl
string
URL of a file to download and attach to the message
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.discordSendFollowUp({
  applicationId: /* ... */,
  interactionToken: /* ... */,
  text: /* ... */
});