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

NameDescription
publisherRequired.
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

KeyDatatypeRequiredDescription
Content-Typestring
Authorizationstring

RESPONSES

status: OK

{&quot;stickerpacks&quot;:[{&quot;id&quot;:&quot;sticker-pack-id&quot;}],&quot;meta&quot;:{&quot;api_status&quot;:&quot;stable&quot;,&quot;version&quot;:&quot;v2.45.1&quot;}}