mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 01:10:07 +00:00
add: getWebhookMessage
This commit is contained in:
18
src/helpers/webhooks/get_webhook_message.ts
Normal file
18
src/helpers/webhooks/get_webhook_message.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { rest } from "../../rest/rest.ts";
|
||||
import { structures } from "../../structures/mod.ts";
|
||||
import { Message } from "../../types/messages/message.ts";
|
||||
import { endpoints } from "../../util/constants.ts";
|
||||
|
||||
/** Returns a previousy-sent webhook message from the same token. Returns a message object on success. */
|
||||
export async function getWebhookMessage(
|
||||
webhookId: bigint,
|
||||
webhookToken: string,
|
||||
messageId: bigint,
|
||||
) {
|
||||
const result = await rest.runMethod<Message>(
|
||||
"get",
|
||||
endpoints.WEBHOOK_MESSAGE(webhookId, webhookToken, messageId),
|
||||
);
|
||||
|
||||
return await structures.createDiscordenoMessage(result);
|
||||
}
|
||||
Reference in New Issue
Block a user