Deletes a single message permanently. Used for removing inappropriate or harmful content. Logged to audit log. Requires MESSAGE_DELETE permission.
curl --request POST \
--url https://api.fluxer.app/v1/admin/messages/delete \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"channel_id": "<string>",
"message_id": "<string>"
}
'{}Documentation Index
Fetch the complete documentation index at: https://docs.fluxer.app/llms.txt
Use this file to discover all available pages before exploring further.
Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
Success
true curl --request POST \
--url https://api.fluxer.app/v1/admin/messages/delete \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"channel_id": "<string>",
"message_id": "<string>"
}
'{}