Can I upload and send WhatsApp stickers via API?

Can I upload and send WhatsApp stickers via API?

Yes, you can apply WhatsApp & Stella API to achieve that.
  1. You need to generate a media ID via the upload media API on WhatsApp, please click here for the details. (All the credentials are available on your Stella Channel's page)
  2. Then, you can call Stella sendResponse API to send a sticker response, you may click here for more information. 
  3. Please make sure you are using: https://bot.stella.sanuker.com/vnext/sendResponses and your core version is "next".

    Please remember to use "STICKER" as a response type in the body. For example:
    {
    "type": "STICKER",
    "attachment_id": "0ee09075-6fc6-499c-8b4a-8d1b00ec4409"
    }




    • Related Articles

    • Can I send stickers with WhatsApp?

      Yes, you can send stickers with WhatsApp. 1. Upload a .webp sticker file via our Attachment ID uploader. Then, copy and save the media id. 2. Go to the Advanced section of a response 3. Put the below code in a Response Object: {   "type": "STICKER", ...
    • Can we send animated stickers in WhatsApp?

      Currently, WhatsApp Business API does not support sending animated stickers (even in .webp format).
    • How to get the id if sending a media template via API?

      The "id" is for the image using media ID, you will need to upload the media to WhatsApp to get the attachment ID first and send then media with ID. The attachment id can be used for a template or normal message. 1. You could upload the file to get ...
    • What is WhatsApp Business API?

      WhatsApp Business API allows medium and large businesses to communicate with their customers at scale. Using the API, businesses can connect thousands of agents and bots to interact with customers programmatically and manually. You could check out ...
    • Are there any references if we are using the WhatsApp API directly?

      If you are using the native WhatsApp API, please refer directly to the official WhatsApp documentation here. If you are using Postman for R&D and testing, you can go here to use the Postman collection provided by WhatsApp.