Send Verification Code via WhatsApp

As a verification channel, WhatsApp shares the same advantages as SMS and is not affected by local carrier infrastructure. This means that WhatsApp messages can be received in areas where Wi-Fi is available but cellular signals are weak or non-existent. Additionally, WhatsApp is generally faster than SMS and provides extra security with end-to-end encryption.

  1. Cost Reduction

In many countries, WhatsApp is cheaper than SMS and does not charge for undelivered messages. Therefore, in countries and regions with high WhatsApp coverage, such as India, Indonesia, and South America, we recommend using WhatsApp as the preferred verification channel. It can increase your overall verification conversion rate while being more cost-effective.

  1. Secure and Reliable

WhatsApp also offers additional security benefits: every WhatsApp user can be identified by the unique phone number provided when creating their account. At the same time, WhatsApp uses its own set of powerful anti-fraud tools to verify these phone numbers. This means that you are partially outsourcing identity verification to WhatsApp, directly benefiting from a robust security system.

1. Create Authentication Message Templates

Step 1: Register YCloud Account

Step 2: Create WABA

Click below to view the detailed guidance.

  • Click Home > Templates > + Add Template

Step 3: Create Authentication Message Template

WhatsApp provides fixed templates for authentication messages:

  • Preset fixed text for authentication message templates:

    • <VERIFICATION_CODE> is your verification code.

    • Security disclaimer (optional): For your security, do not share this code.

    • Expiration warning (optional): "This code will expire in <NUM_MINUTES> minutes.

  • Validity period: Customize the actual validity period of this code. If the message is not delivered within this period, it will be withdrawn, and you will not be charged, nor will your customer see the message.

  • Copy code button or Zero-tap button

  • The text does not support URLs, media, or emojis. Authentication templates containing a one-time password button consist only of preset text and a button, so the risk of such templates being suspended is greatly reduced.

  1. Create message template

  • Click Home > Templates > + Add Template, then create your template

  1. Setting up template

  • Select Category "Authentication", and name the template and select the template language

    • Please note: The template name must be unique. Names only support lowercase letters a-z, 0-9, and underscores (_). Once submitted, the template cannot be changed.

Page for naming the template, selecting the template type, and template language
  • Choose the sending method:

    • Copy code

    • Autofill-One tap

    • Autofill-Zero tap

Choosing different sending methods here will result in variations in the interface buttons and usage methods that the user receives. Overall, zero-click verification codes offer the best user experience, making them the preferred solution. However, this button is currently only supported on Android devices outside of India, and implementing such a button requires changes to your app's code to perform a "handshake." Additionally, the app's signing key hash needs to be modified. A specific comparison is as follows:

Sending Method

Copy code

One tap

Zero tap

Interface Display

Guide

The user clicks the button in WhatsApp to copy the code, then manually switches to your app's page and pastes the verification code into the app page.

When the user clicks the button in WhatsApp, it will automatically load your app and pass the verification code to the app, requiring just one click.

After the user receives the verification code, your app interface will automatically fill in the verification code without any clicks or switching needed.

4o

Limitations

No device or region restrictions.

It is only supported on Android devices outside of India currently. Additionally, changes to the app's code are required to perform the "handshake," as well as modifications to the app's signing key hash.

It is only supported on Android devices outside of India currently. Additionally, changes to the app's code are required to perform the "handshake," as well as modifications to the app's signing key hash.

  • Add a security disclaimer and an expiration time warning for the verification code (optional).

  • Setting up message validity period

It is recommended to set a custom validity period, allowing you to choose between 1-10 minutes as the message's validity period. Once set, your authentication message must be delivered within this timeframe. If the message is not delivered to the user's device within this period, it will be withdrawn, you will not be charged, and your customer will not see the message. If you do not set a custom validity period, the standard WhatsApp message validity period (24 hours) will apply. This means you might incur additional charges for invalid messages sent after the timeout.

  • Click Submit Template

    • Generally, the verification code template will be displayed as approved within a few minutes after submission. When the status shows "active", it means the template status is activated and ready to send.

Template status "Activated - Quality Pending"
  • When the template status shows "Active-Quality pending", it means that this message template has been activated and ready to be sent.

Step 4: Send OTP Messages Using the API

Next, you can send OTP messages through API

Click to view API Docs

API request reference:

Step 5: Receive Webhook Notifications

1.Configure the Callback URL

Create a Webhook endpoint and enter the callback URL. Notifications regarding the status of the message will be sent to your Webhook callback.

2.Monitor OTP Messages Status

For each message you send, notifications regarding the status of the message will be sent to your Webhook callback. You can determine whether your verification code was successfully sent based on the feedback received.

StatusDescription

Failed

The message you sent failed to deliver. The reason for the failure will be included in the callback. Please refer to the error message documentation for assistance with debugging: Error Codes and Troubleshooting.

Sent

The message you sent is being processed within WhatsApp's system.

Delivered

The message you sent has been delivered to the user's device.

Read

The message you sent has been read by the user. The read notification is only available for users who have enabled read receipts. For users who have not enabled this feature, you will only receive a delivered notification.

Best practice for WhatsApp OTP

1.Front-End Interface Design

Using WhatsApp to send OTP is a new method. To ensure that your users have an optimal experience during the verification code process, we offer some UI design suggestions:

Solution

Design Plan

Applicable Case

Example

1

By default, if sending the OTP via WhatsApp fails (likely because the target phone number is not registered with a personal WhatsApp account), the OTP will be sent immediately via SMS.

Your audience is primarily concentrated in countries/regions with high WhatsApp coverage, such as Indonesia, India, Brazil, and Colombia.

2

Provide button options for receiving OTP messages, allowing users to select their preferred channel for receiving the OTP.

Your audience is located in countries/regions where WhatsApp coverage is not sufficient, or your app serves multiple countries/regions.

2.Check if the user has WhatsApp installed.

To improve user experience and default to using WhatsApp, you can implement a check to determine if the user has the WhatsApp application installed on the same device running your app. If WhatsApp is detected, you can proceed to submit the WhatsApp verification code. If it is not detected, you can switch to sending the OTP via SMS.

For detecting whether the app is installed, you can refer to:

Here is an example implementation for detecting WhatsApp on Android:

fun PackageManager.isPackageInstalled(packageName: String): Boolean {
  return try {
    getPackageInfo(packageName, PackageManager.GET_ACTIVITIES)
    true
  } catch (e: NameNotFoundException) {
    false
  }
}

fun isWhatsAppInstalled : Boolean() {
    val whatsAppPackageName = "com.whatsapp"
    val whatsAppBusinessPackageName = "com.whatsapp.w4b"
    return getPackageManager().isPackageInstalled(whatsAppPackageName) || getPackageManager().isPackageInstalled(whatsAppBusinessPackageName)
}

3.Set Up an Auto-Resend Policy

Generally, auto-resend policies fall into two categories:

  1. Immediate SMS Resend for Failure (Highly Recommended)

    Failed: Indicates that the WhatsApp message submission has failed. If the receipt shows a failure, immediately resend the OTP via SMS to ensure a smooth customer experience.

  2. SMS Resend for Delayed Delivery Status (Optional)

    We recommend designing a strategy for handling timeouts when the delivery status is not received. For instance, set a timeout period: if the WhatsApp OTP message is successfully submitted (sent) but the delivery status update is not received within the timeout period, automatically resend the same OTP via SMS. We suggest a timeout period ranging from 15 to 60 seconds, depending on how you balance cost and customer experience.

Special Verification Method: Inbound Verification

In addition to the commonly used method of businesses proactively sending verification codes, there is a special inbound verification method where user verification is completed through users actively sending inbound messages. This method is similar to the third-party login experience on WeChat. The advantages of this method include:

  • Lower Costs: For example, in Indonesia, conversations initiated by users are charged at a rate that is at least one-third cheaper than those initiated by businesses.

  • 24-Hour Free Interaction Window: Since the conversation is initiated by the user, it provides a 24-hour free interaction window. During this period, businesses can send marketing or notification messages to the customer without incurring additional costs.

Below is a case study of the Shopee app in Southeast Asia: πŸ‘‡

569KB
515_1682401824.mp4

Last updated