Marks multiple channels as read for the authenticated user in bulk.
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>"
}
]
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
Array of channel/message pairs to acknowledge
1 - 100 elementsShow child attributes
No Content
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>"
}
]
}