Create Third Party Stickerpacks
POST {{URL}}/v1/stickerpacks
Send a
POST
API request to the
v1/stickerpacks
endpoint to create a third-party stickerpack using the following parameters:
Parameters
Name | Description |
---|---|
publisher
|
Required
.
The name of the publisher of the third-party stickerpack. Type: String |
name
Type: String |
Required
.
The name of the stickerpack. |
ios_app_store_link
Type: String |
Optional
.
The link to the stickerpack in the Apple iOS App Store. The link follows the format
https://itunes.apple.com/app/idXXXXXXXXX
. To get your App Store link, refer to the instructions at
https://stackoverflow.com/questions/4137426/get-itunes-link-for-app-before-submitting
.
|
android_app_store_link
Type: String |
Optional
.
The link to the stickerpack in the Google Play store. The link follows the format
https://play.google.com/store/apps/details?id=com.example
where
com.example
is your app's package name.
|
Response
A successful response returns
200 OK
and either
null
or
{}
.
Request Body
{"publisher"=>"<Your Publisher Name>", "name"=>"<Your Sticker Pack Name>", "ios_app_store_link"=>"<Valid iOS App Store Link>", "android_app_store_link"=>"<Valid Android App Store Link>"}
HEADERS
| Key | Datatype | Required | Description |
| Content-Type
| string | | |
| Authorization
| string | | |
RESPONSES
status: OK
{"stickerpacks":[{"id":"sticker-pack-id"}],"meta":{"api_status":"stable","version":"v2.45.1"}}