Skip to main content
PATCH
/
packs
/
stickers
/
{pack_id}
/
{sticker_id}
Update pack sticker
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
}

Authorizations

Authorization
string
header
required

Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.

Path Parameters

pack_id
string<snowflake>
required

The ID of the pack

sticker_id
string<snowflake>
required

The ID of the sticker

Body

application/json
name
string
required

The name of the sticker (2-30 characters)

description
string | null

Description of the sticker (1-500 characters)

tags
string[]

Array of autocomplete/suggestion tags (max 10 tags, each 1-30 characters)

Maximum array length: 10

Response

Success

id
string
required

The unique identifier for this sticker

name
string
required

The name of the sticker

description
string
required

The description of the sticker

tags
string[]
required

Autocomplete/suggestion tags for the sticker

Maximum array length: 100
animated
boolean
required

Whether this sticker is animated