Permanently deletes a sticker from the specified pack. Requires both pack ID and sticker ID in the path parameters. Accepts an optional “purge” query parameter to control whether associated assets are immediately deleted.
curl --request DELETE \
--url https://api.fluxer.app/v1/packs/stickers/{pack_id}/{sticker_id} \
--header 'Authorization: <api-key>'{
"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.
The ID of the pack
The ID of the sticker
Whether to also purge the asset from storage
No Content
curl --request DELETE \
--url https://api.fluxer.app/v1/packs/stickers/{pack_id}/{sticker_id} \
--header 'Authorization: <api-key>'{
"code": "ACCESS_DENIED",
"message": "<string>",
"errors": [
{
"path": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}