Skip to main content

Hey I just connected a tally form (from a website of mine) to a discord channel. It all works but is there a version embed the message like this?
 

Hi there @neoxvisions,

Welcome to the Community! 🎉

You can use the Custom Request (Webhooks) POST action step and use the following code as an example:

{
"content": "This is a required field",
"embed": {
"title": "Title",
"description": "Description"
}
}

Also, here’s the full documentation for embeds at https://discordapp.com/developers/docs/resources/channel#embed-object as well as a handy visualizer for you to see what the embed will look like (along with the code you need to use) at https://leovoel.github.io/embed-visualizer/

Additionally, you can follow this tutorial as well: 

 

Hopefully, this helps!