Deletes all messages from a specific user across all channels. Permanent operation used for account suspension or policy violation. Requires MESSAGE_DELETE_ALL permission.
curl --request POST \
--url https://api.fluxer.app/v1/admin/messages/delete-all \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "<string>",
"dry_run": true
}
'{
"success": true,
"dry_run": true,
"channel_count": 1073741823,
"message_count": 1073741823,
"job_id": "<string>"
}Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
curl --request POST \
--url https://api.fluxer.app/v1/admin/messages/delete-all \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "<string>",
"dry_run": true
}
'{
"success": true,
"dry_run": true,
"channel_count": 1073741823,
"message_count": 1073741823,
"job_id": "<string>"
}