Infobip Integration

An image showing Voucherify and Infobip logos.

Infobip, a global communication platform, allows businesses to engage customers through SMS, WhatsApp, and email, while Voucherify enables personalized promotions, vouchers, and loyalty programs. By combining the strengths of both platforms, you can streamline marketing campaigns that engage your customers across channels with personalized offers. Some example use cases in marketing campaign engagement scenarios are:

  • Automated Birthday Campaigns via various Messaging Channels. Automatically send personalized birthday offers to customers via their preferred messaging channel (e.g., WhatsApp, SMS, Viber) to enhance engagement and encourage voucher redemption.
  • Cart Abandonment Recovery with Personalized Discounts. Use personalized discount vouchers sent through a customer’s preferred messaging channel to win back those who have abandoned their shopping carts.
  • Loyalty Program Engagement. Reward loyal customers by sending real-time updates about their loyalty status or rewards through their chosen communication platform.
  • Event-Triggered Campaigns (e.g., Black Friday Flash Sales). Maximize engagement during special events by sending time-sensitive offers across multiple messaging channels, ensuring timely outreach to various customer segments.

Also, Infobip’s contact center and customer support capabilities can be extended with Voucherify to enable the following scenarios:

  • Appeasement Codes for Customer Resolutions. Customer support agents can quickly generate and share appeasement codes (e.g., discounts or free shipping vouchers) via a customer’s preferred channel directly from their support platform to resolve issues swiftly and improve satisfaction.
  • Proactive Problem-Solving with Personalized Offers. When an issue is detected (e.g., delayed shipment), a personalized apology voucher or discount can be automatically generated and sent to the customer, preemptively addressing concerns and showing appreciation for their patience.
  • Feedback-Based Incentives. After a customer support interaction, send a satisfaction survey, and upon completion, instantly deliver a voucher or discount code as a token of appreciation, fostering engagement and encouraging feedback.

The following guide will walk you through the process of setting up an Infobip + Voucherify integration flow without any coding necessary to automatically send a personalized WhatsApp birthday message with a discount voucher to your customers.

Contents

  1. Overview of the flow
  2. Step-by-Step Configuration
    1. Creating a Flow in Infobip’s Flow Builder
    2. Making an API Call to Voucherify
    3. Sending the WhatsApp Message with Voucher Code
    4. Launching the flow
  3. Throttling

Overview of the flow

The flow involves three steps:

  1. Triggering the Flow. The trigger can be:
    • External source (e.g., CRM, CDP, or eCommerce)
    • Action or event,
    • Predefined audience in Infobip,
    • Inbound message,
    • Change in person’s profile.
  2. In this example, an API call to Infobip triggers the flow.

  3. Calling Voucherify API: Infobip flow calls Voucherify to generate and retrieve a personalized voucher code.
  4. Sending WhatsApp Message: Infobip extracts the voucher code and uses it in a WhatsApp message to the customer.

Step-by-Step Configuration

Creating a Flow in Infobip’s Flow Builder

  1. Access the Flow Builder: Navigate to the Campaigns section and select Flows to create a new flow.
  2. Define the Trigger: Choose External Source and Flow API as the starting point. This allows the flow to be triggered externally via an API call. 

Note: you will get the Infobip’s API endpoint URL for this specific flow:

Refer to Infobip documentation for details on how to call this endpoint. You may also need to update the API Base URL.

Making an API Call to Voucherify

  1. Add “Call API” Block in Infobip flow.
  2. Configure the API Call to Voucherify

Note: to generate unique personalized vouchers, a Voucherify Discount Code Campaign needs to be configured. Then, the codes can be generated via Voucherify’s Create Publication API endpoint.

  • Request URL: https://{cluster}.voucherify.io/v1/publications
  • HTTP Method: POST
  • Header: Include Content-Type: application/json and the necessary Voucherify API credentials (X-App-Id and X-App-Token).
  • Body Payload: Pass the data needed for Voucherify to create the voucher, such as the customer_id, campaign_id, and any other metadata required in JSON format.
{
    "campaign": {
        "name": "Happy Birthday 2024 Coupons Campaign"
    },
    "customer": {
        "source_id": "{$id}"
    },
    "metadata": {
        "callFrom": "Infobip"
    }
}

Note: you can pass customer.source_id as placeholder so that either ID from external source or Infobip’s internal ID could be used in the runtime. Voucherify can work with any external ID.

  1. Extract the Voucher Code:
    • Once the API call is successful, configure Infobip to extract the voucher code from the API response. On the Response tab of Call API block configuration, turn “Wait until response is received” toggle on.
    • In Response Body Variable, add a Variable. Use JSON path expression $.voucher.code to map the voucher code to a flow variable, e.g., {voucher_code}. A flow variable can be either preconfigured in the flow settings or configured in the context of the Call API block configuration.

Note: for the sake of simplicity, the API Call block error handling configuration capabilities is skipped here.

Sending the WhatsApp Message with Voucher Code

  1. Connect “Send WhatsApp Message” block to “Call API” block:
  2. Configure WhatsApp Messaging Block:
    • Use a message template that includes personalized elements like the customer’s name and the generated voucher code.
    • Include the {voucher_code} variable extracted earlier to insert the voucher code dynamically in the WhatsApp message.
    • Example message template:

🎉HappyBirthday{firstName}!Here’sa$50discountonyournextbouquet.Usecode{voucher_code}toredeemyourgift!

Note: {firstName} here is a standard Infobip variable; {voucher_code} is a flow-specific variable that was configured earlier.

Launching the flow

Now, make sure you give a name to the flow and hit the Validate button. If everything is configured correctly, the flow is ready to launch.

You can observe the flow’s live performance, e.g., the number of engaged users or total engagements, on Infobip canvas:

Voucherify must be integrated with the e-commerce store to enable customers to redeem their voucher codes. This integration ensures that the generated voucher codes sent through the Infobip flow can be validated and redeemed during checkout.

Throttling

Voucherify limits the number of API requests you can send per month or hour/minute. To avoid surpassing these limits, use the built-in Infobip’s throttling mechanism.

By adding throttling, you can prevent your application from sending more requests than allowed within the allotted timeframe. For example, you could configure your system to send only a maximum of 80 requests per minute if the limit is 100, leaving some buffer space for validation and redemption requests in other parts of the integration.

To introduce throttling, add a defined message-sending speed that’s available in the “Scheduling” tab of Infobip’s Call API block.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us