discord / discord-api-docs

Official Discord API Documentation
https://discord.com/developers/docs/intro
Other
5.95k stars 1.26k forks source link

Bulk Delete Messages endpoint not functioning correctly #6172

Closed TechGeekGamer closed 1 year ago

TechGeekGamer commented 1 year ago

Description

When using the Bulk Delete Messages endpoint I get a 204 response but the messages still persist. The messages are less than 2 weeks old.

Steps to Reproduce

curl https://discord.com/api/v10/channels/CHANNEL_ID/messages/bulk-delete -i -H 'Content-Type: application/json' -H 'User-Agent: DiscordBot' -H 'Authorization: Bot BOT_TOKEN' -d '{"messages":["MESSAGE_ID_1","MESSAGE_ID_2", "MESSAGE_ID_3"]}'

Expected Behavior

Return a 204 response, and the messages actually get deleted.

Current Behavior

Returns a 204 response, but the messages still exist.

Screenshots/Videos

No response

Client and System Information

N/A

TechGeekGamer commented 1 year ago

This appears to be resolved now.