Delete and clean up all assets belonging to a guild, including icons, banners, and other media. This is a destructive operation used for cleanup during guild management or compliance actions.
curl --request POST \
--url https://api.fluxer.app/v1/admin/assets/purge \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
]
}
'{
"processed": [
{
"id": "<string>",
"asset_type": "emoji",
"found_in_db": true,
"guild_id": "<string>"
}
],
"errors": [
{
"id": "<string>",
"error": "<string>"
}
]
}Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
List of asset IDs to purge
100curl --request POST \
--url https://api.fluxer.app/v1/admin/assets/purge \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"ids": [
"<string>"
]
}
'{
"processed": [
{
"id": "<string>",
"asset_type": "emoji",
"found_in_db": true,
"guild_id": "<string>"
}
],
"errors": [
{
"id": "<string>",
"error": "<string>"
}
]
}