Qikberry API Docs
SMSWhatsapp Cloud API
RCS for BusinessVMNVerifyIntegrations
SMSWhatsapp Cloud API
RCS for BusinessVMNVerifyIntegrations
Qikberry.AI
App
  1. Template messages
  • Introduction
  • Marketing Messages
  • Authentication Messages
  • Catalog Messages
  • Payment Messages
  • Receiving Messages via Webhook
  • Template messages
    • Overview
    • Components
    • Media Template Messages
    • Text Template Message
    • Coupon Code Template Messages
    • Limited-Time Offer Template Messages
    • Media card carousel templates
    • Sample Template Message
      POST
  • Non-templates messages
    • Interactive
      • URL button
      • List buttons
      • Media carousel
      • Reply buttons
    • Address
      POST
    • Audio
      POST
    • Document
      POST
    • Contacts
      POST
    • Image
      POST
    • Location
      POST
    • Video
      POST
    • Text
      POST
    • Location Request
      POST
    • Reaction
      POST
    • Sticker
      POST
  1. Template messages

Limited-Time Offer Template Messages

What are Limited-Time Offer Template Messages?#

A Limited-Time Offer Template Message is a WhatsApp Marketing Template that helps businesses promote offers that are available for a limited period.
It displays a live countdown timer in the message, showing customers how much time is left before the offer expires. This creates a sense of urgency and encourages customers to take action before the offer ends.
Limited-Time Offer Templates can also include media, personalized message content, coupon codes, and action buttons, making them ideal for promotional campaigns.

Template Components#

A Limited-Time Offer Template can contain the following components:
ComponentDescription
HeaderOptional media such as an Image, Video, or Document displayed at the top of the message.
BodyMain promotional message. Supports static text and variables.
Limited-Time OfferDisplays a live countdown timer showing how much time is left before the offer expires.
Copy Code ButtonOptional button that copies the coupon code with a single tap.
URL ButtonOptional button that directs customers to a website or landing page.
Note: The available components depend on how the template is created and approved by Meta.
limited_time_offer_message.png
Limited Time Offer Message

Payload Example#

{
    "to": "<USER_PHONE_NUMBER>",
    "type": "template",
    "template": {
        "name": "<TEMPLATE_NAME>",
        "language": {
            "code": "<LANGUAGE_CODE>"
        },
        "components": [
            {
                "type": "header",
                "parameters": [
                    {
                        "type": "image",
                        "image": {
                            "link": "<IMAGE_URL>"
                        }
                    }
                ]
            },
            {
                "type": "body",
                "parameters": [
                    {
                        "type": "text",
                        "text": "<BODY_VARIABLE_VALUE_1>"
                    },
                    {
                        "type": "text",
                        "text": "<BODY_VARIABLE_VALUE_2>"
                    }
                ]
            },

            // OR

            {
                "type": "limited_time_offer",
                "parameters": [
                    {
                        "type": "limited_time_offer",
                        "limited_time_offer": {
                            "expiration_time_ms": <EXPIRATION_TIME_MS>
                        }
                    }
                ]
            },

            // Optional Copy Code Button

            {
                "type": "button",
                "sub_type": "copy_code",
                "index": 0,
                "parameters": [
                    {
                        "type": "coupon_code",
                        "coupon_code": "<COUPON_CODE>"
                    }
                ]
            },

            // Optional URL Button

            {
                "type": "button",
                "sub_type": "url",
                "index": 1,
                "parameters": [
                    {
                        "type": "text",
                        "text": "<BUTTON_URL_VARIABLE_VALUE>"
                    }
                ]
            }
        ]
    }
}
Note: Include only the components that are configured in your approved WhatsApp template. For example, if your template does not include a Copy Code button, you can omit that button component.
Modified at 2026-08-06 06:33:10
Previous
Coupon Code Template Messages
Next
Media card carousel templates
Built with