Skip to main content
POST
/
channels
/
{channel_id}
/
messages
/
{message_id}
/
ack
Acknowledge a message
curl --request POST \
  --url https://api.fluxer.app/v1/channels/{channel_id}/messages/{message_id}/ack \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "mention_count": 1073741823,
  "manual": true
}
'
{
  "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

Body

application/json
mention_count
integer<int32>
Required range: 0 <= x <= 2147483647
manual
boolean

Whether this is a manual acknowledgement

Response

No Content