Skip to main content
Question

How do I embed Discord message?

  • June 15, 2024
  • 1 reply
  • 585 views

neoxvisions

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?
 

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

1 reply

ken.a
Forum|alt.badge.img+6
  • Zapier Staff
  • June 17, 2024

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!