Skip to main content
POST
/
read-states
/
ack-bulk
Mark channels as read
curl --request POST \
  --url https://api.fluxer.app/v1/read-states/ack-bulk \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "read_states": [
    {
      "channel_id": "<string>",
      "message_id": "<string>"
    }
  ]
}
'
{
  "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.

Body

application/json
read_states
object[]
required

Array of channel/message pairs to acknowledge

Required array length: 1 - 100 elements

Response

No Content