/v1/stickerpacks
Use o nó stickerpacks
para gerenciar pacotes de figurinhas e figurinhas próprias e de terceiros.
Este documento abrange o seguinte:
GET /v1/stickerpacks?namespace=whatsapp
{ "stickerpacks": [ {"id": "sticker-pack-id1"}, {"id": "sticker-pack-id2"} ] }
GET /v1/stickerpacks/sticker-pack-id?namespace=whatsapp
{ "stickerpacks": [ { "publisher" : "sticker-pack-publisher-name", "name": "sticker-pack-name" } ] }
GET /v1/stickerpacks/sticker-pack-id/stickers?namespace=whatsapp
{ "stickers": [ {"index": "sticker-index1"}, {"index": "sticker-index2"} ] }
GET /v1/stickerpacks/sticker-pack-id/stickers/sticker-index?namespace=whatsapp
{ "stickers": [ { "id": "sticker-media-id" # ex: b942a4d1-4e1d-4c56-8cfa-a848b8222061 "emojis": ["🐥", "😃"], } ] }
POST /v1/stickerpacks { "publisher" : "your-publisher-name", "name": "your-sticker-pack-name", "ios_app_store_link" : "https://itunes.apple.com/app/id3133333", "android_app_store_link" : "https://play.google.com/store/apps/details?id=com.example", }
Nome | Obrigatório | Descrição |
---|---|---|
| Sim | O nome do gerenciador de anúncios do pacote de figurinhas de terceiros |
| Sim | O nome do pacote de figurinhas |
| Não | Link para o pacote de figurinhas na App Store do Apple iOS |
| Não | Link para o pacote de figurinhas na Google Play Store |
{ "stickerpacks": [ { "id": "sticker-pack-id" } ] }
GET /v1/stickerpacks
{ "stickerpacks": [ {"id": "sticker-pack-id1"}, {"id": "sticker-pack-id2"} ] }
GET /v1/stickerpacks/your-sticker-pack-id
{ "stickerpacks": [ { "publisher" : "sticker-pack-publisher-name", "name": "sticker-pack-name", "ios_app_store_link" : "https://itunes.apple.com/app/id3133333", "android_app_store_link" : "https://play.google.com/store/apps/details?id=com.example", } ] }
PATCH /v1/stickerpacks/your-sticker-pack-id { "publisher" : "your-publisher-name", "name": "your-sticker-pack-name", "ios_app_store_link" : "https://itunes.apple.com/app/id3133333", "android_app_store_link" : "https://play.google.com/store/apps/details?id=com.example", }
Nome | Obrigatório | Descrição |
---|---|---|
| Não | O nome do gerenciador de anúncios do pacote de figurinhas de terceiros |
| Não | O nome do pacote de figurinhas |
| Não | Link para o pacote de figurinhas na App Store do Apple iOS |
| Não | Link para o pacote de figurinhas na Google Play Store |
Uma resposta bem-sucedida mostrará 200 OK
, null
ou {}
.
null or {}
DELETE /v1/stickerpacks/your-sticker-pack-id
Uma resposta bem-sucedida mostrará 200 OK
, null
ou {}
.
null or {}
POST /v1/stickerpacks/your-sticker-pack-id/stickers { "image_data_id" : "your-sticker-image-media-id", "emojis": ["🐥", "😃"] }
Nome | Obrigatório | Descrição |
---|---|---|
| Sim | O ID da mídia da figurinha |
| Não | Uma matriz dos emojis incluídos no pacote de figurinhas |
{ "stickers": [{ "index": "sticker-index" }] }
GET /v1/stickerpacks/your-sticker-pack-id/stickers
{ "stickers": [ {"index": "sticker-index1"}, {"index": "sticker-index2"} ] }
GET /v1/stickerpacks/your-sticker-pack-id/stickers/your-sticker-index
{ "stickers": [ { "id": "sticker-media-id" # ex: b942a4d1-4e1d-4c56-8cfa-a848b8222061 "emojis": ["🐥", "😃"], "image_data_id" : "sticker-image-media-id", } ] }
PATCH /v1/stickerpacks/your-sticker-pack-id/stickers/your-sticker-index { "image_data_id" : "your-sticker-image-media-id", "emojis": ["🐥", "😃"], }
Nome | Obrigatório | Descrição |
---|---|---|
| Não | O ID da mídia da figurinha |
| Não | Uma matriz dos emojis incluídos no pacote de figurinhas |
Uma resposta bem-sucedida mostrará 200 OK
, null
ou {}
.
null or {}
DELETE /v1/stickerpacks/your-sticker-pack-id/stickers/your-sticker-index
Uma resposta bem-sucedida mostrará 200 OK
, null
ou {}
.
null or {}