diff --git a/src/Discord.Net.Core/Discord.Net.Core.xml b/src/Discord.Net.Core/Discord.Net.Core.xml
index ca9e9696f..13bbc8eb5 100644
--- a/src/Discord.Net.Core/Discord.Net.Core.xml
+++ b/src/Discord.Net.Core/Discord.Net.Core.xml
@@ -10089,6 +10089,11 @@
Gets the user that created this webhook.
+
+
+ Gets the ID of the application owning this webhook.
+
+
Modifies this webhook.
diff --git a/src/Discord.Net.Core/Entities/Webhooks/IWebhook.cs b/src/Discord.Net.Core/Entities/Webhooks/IWebhook.cs
index b2d017316..d5bc70d71 100644
--- a/src/Discord.Net.Core/Entities/Webhooks/IWebhook.cs
+++ b/src/Discord.Net.Core/Entities/Webhooks/IWebhook.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Threading.Tasks;
namespace Discord
@@ -49,6 +49,11 @@ namespace Discord
///
IUser Creator { get; }
+ ///
+ /// Gets the ID of the application owning this webhook.
+ ///
+ ulong? ApplicationId { get; }
+
///
/// Modifies this webhook.
///
diff --git a/src/Discord.Net.Rest/API/Common/Webhook.cs b/src/Discord.Net.Rest/API/Common/Webhook.cs
index cbd5fdad5..ff1dca9bd 100644
--- a/src/Discord.Net.Rest/API/Common/Webhook.cs
+++ b/src/Discord.Net.Rest/API/Common/Webhook.cs
@@ -21,5 +21,7 @@ namespace Discord.API
[JsonProperty("user")]
public Optional Creator { get; set; }
+ [JsonProperty("application_id")]
+ public Optional ApplicationId { get; set; }
}
}
diff --git a/src/Discord.Net.Rest/API/Rest/ModifyWebhookMessageParams.cs b/src/Discord.Net.Rest/API/Rest/ModifyWebhookMessageParams.cs
index ba8fcbb4e..8298ff19c 100644
--- a/src/Discord.Net.Rest/API/Rest/ModifyWebhookMessageParams.cs
+++ b/src/Discord.Net.Rest/API/Rest/ModifyWebhookMessageParams.cs
@@ -12,5 +12,7 @@ namespace Discord.API.Rest
public Optional
-
+
Sends a message to the channel for this webhook.
Returns the ID of the created message.
@@ -99,6 +99,11 @@
Gets or sets the allowed mentions of the message.
+
+
+ Gets or sets the components that the message should display.
+
+
Could not find a webhook with the supplied credentials.
diff --git a/src/Discord.Net.Webhook/DiscordWebhookClient.cs b/src/Discord.Net.Webhook/DiscordWebhookClient.cs
index 91d077411..d4affb08b 100644
--- a/src/Discord.Net.Webhook/DiscordWebhookClient.cs
+++ b/src/Discord.Net.Webhook/DiscordWebhookClient.cs
@@ -88,8 +88,8 @@ namespace Discord.Webhook
/// Sends a message to the channel for this webhook.
/// Returns the ID of the created message.
public Task SendMessageAsync(string text = null, bool isTTS = false, IEnumerable