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", }
이름 | 필수 | 설명 |
---|---|---|
| 예 | 타사 스티커팩 퍼블리셔 이름 |
| 예 | 스티커팩 이름 |
| 아니요 | Apple iOS App Store의 스티커팩 링크 |
| 아니요 | 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", }
이름 | 필수 | 설명 |
---|---|---|
| 아니요 | 타사 스티커팩 퍼블리셔 이름 |
| 아니요 | 스티커팩 이름 |
| 아니요 | Apple iOS App Store의 스티커팩 링크 |
| 아니요 | Google Play Store의 스티커팩 링크 |
성공적인 응답에는 200 OK
와 null
또는 {}
가 표시됩니다.
null or {}
DELETE /v1/stickerpacks/your-sticker-pack-id
성공적인 응답에는 200 OK
와 null
또는 {}
가 표시됩니다.
null or {}
POST /v1/stickerpacks/your-sticker-pack-id/stickers { "image_data_id" : "your-sticker-image-media-id", "emojis": ["🐥", "😃"] }
이름 | 필수 | 설명 |
---|---|---|
| 예 | 스티커 미디어의 ID |
| 아니요 | 스티커팩에 포함된 이모티콘 배열 |
{ "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": ["🐥", "😃"], }
이름 | 필수 | 설명 |
---|---|---|
| 아니요 | 스티커 미디어의 ID |
| 아니요 | 스티커팩에 포함된 이모티콘 배열 |
성공적인 응답에는 200 OK
와 null
또는 {}
가 표시됩니다.
null or {}
DELETE /v1/stickerpacks/your-sticker-pack-id/stickers/your-sticker-index
성공적인 응답에는 200 OK
와 null
또는 {}
가 표시됩니다.
null or {}