Creates a new sticker within the specified pack. Requires the pack ID in the path and sticker metadata (name, description, tags, and image data) in the request body. Returns the newly created sticker with its generated ID.
curl --request POST \
--url https://api.fluxer.app/v1/packs/stickers/{pack_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"image": "aSDinaTvuI8gbWludGxpZnk=",
"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]*)$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 POST \
--url https://api.fluxer.app/v1/packs/stickers/{pack_id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"image": "aSDinaTvuI8gbWludGxpZnk=",
"description": "<string>",
"tags": [
"<string>"
]
}
'{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"tags": [
"<string>"
],
"animated": true
}