Discord node

Describe the problem/error/question

Hi, i just switched to using the new discord node, i use embed notification and saw that some options are missing, like footer options, author url and some others, is there a way to configure those options?

Information on your n8n setup

  • **n8n version: 1.22.6
  • **Database (default: SQLite): PostgreSQL
  • **Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
  • **Operating system: Debian 12 amd64

Hi @Pedro_Buffon
if you want to configure those options you should use the “Input Method” > “Raw JSON” and structure all the embed fields you need in the Value parameter (as JSON).
You can find the available Discord fields for an embed on the Discord developers portal.

Let me know if this helps and you need more support
All the best

1 Like

Link to developers portal page with embed fields:

Here’s an example of a JSON:

{
    "author": "My Name",
	"url": "https://discord.js.org",
	"fields": [
		{
			"name": "Regular field title",
			"value": "Some value here"
		}
	],
	"footer": {
		"text": "Some footer text here",
		"icon_url": "https://i.imgur.com/AfFp7pu.png"
	}
}

Ok, thanks for the response, i’ll convert my node to use json, is there a roadmap for those updates in the near future?

Hi @Pedro_Buffon
there’s no near plan to add those fields.
Those were not originally added not to clutter the user interface. But I added a note to our internal documentation to be sure these are added when we touch the Discord node again.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.