From aef6ebe9dd113425d303a19e3ccfacd2c3a60d37 Mon Sep 17 00:00:00 2001 From: tbertonatti Date: Thu, 23 Jun 2022 16:03:00 -0300 Subject: [PATCH] Add embed image parameter for Discord notify (#23191) --- source/_integrations/discord.markdown | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/_integrations/discord.markdown b/source/_integrations/discord.markdown index 5ccead44b71..c2f560582c7 100644 --- a/source/_integrations/discord.markdown +++ b/source/_integrations/discord.markdown @@ -78,6 +78,7 @@ To include messages with embedding, use these attributes underneath the `embed` | `author` | yes | Sets the footer for the embed content. | `footer` | yes | Sets the footer for the embed content. | `thumbnail` | yes | Sets the thumbnail for the embed content. +| `image` | yes | Sets the image for the embed content. | `fields` | yes | Adds a field to the embed object. `name` and `value` are *required*, `inline` is *true* by default. ### Example service call @@ -115,6 +116,8 @@ To include messages with embedding, use these attributes underneath the `embed` icon_url: 'https://www.home-assistant.io' thumbnail: url: 'https://www.home-assistant.io/images/favicon-192x192-full.png' + image: + url: 'https://www.home-assistant.io/images/favicon-192x192-full.png' fields: - name: 'fieldname1' value: 'valuename1'