Skip to main content
DELETE
/
channels
/
{channel_id}
/
messages
/
{message_id}
/
reactions
/
{emoji}
Remove all reactions with emoji
curl --request DELETE \
  --url https://api.fluxer.app/v1/channels/{channel_id}/messages/{message_id}/reactions/{emoji} \
  --header 'Authorization: <api-key>'
{
  "code": "ACCESS_DENIED",
  "message": "<string>",
  "errors": [
    {
      "path": "<string>",
      "message": "<string>",
      "code": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.

Path Parameters

channel_id
string<snowflake>
required

The ID of the channel

message_id
string<snowflake>
required

The ID of the message

emoji
string
required

The emoji

Response

No Content