Updates the name, description, or tags of an existing sticker within the specified pack. Requires both pack ID and sticker ID in the path parameters. Returns the updated sticker with its new metadata and all existing fields.
curl --request PATCH \
--url https://api.fluxer.app/v1/packs/stickers/{pack_id}/{sticker_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
]
}
'{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"animated": true
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The ID of the pack
^(0|[1-9][0-9]*)$The ID of the sticker
^(0|[1-9][0-9]*)$Success
The unique identifier for this sticker
^(0|[1-9][0-9]*)$The name of the sticker
The description of the sticker
Autocomplete/suggestion tags for the sticker
100Whether this sticker is animated
curl --request PATCH \
--url https://api.fluxer.app/v1/packs/stickers/{pack_id}/{sticker_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
]
}
'{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"animated": true
}