Stickers
List of Sticker Pack
This method is used to get list of sticker pack created through producer suite.
It returns a Promise that resolves the paginated list of sticker pack objects.
import { getStickerPacks } from '@livelike/javascript'
getStickerPacks().then(({results}) => console.log(results))Sticker Pack details
This method is used to get sticker pack details using sticker pack Id.
import { getStickerPackDetail } from '@livelike/javascript'
getStickerPackDetail({
stickerPackId: "<Sticker Pack ID>",
}).then(stickerPack => console.log(stickerPack))