One-tap autofill authentication templates
Updated: Nov 4, 2025 One-tap autofill authentication templates allow you to send a one-time password or code along with an one-tap autofill button to your users. When a WhatsApp user taps the autofill button, the WhatsApp client triggers an activity which opens your app and delivers it the password or code.
One-tap autofill button authentication templates consist of:
Preset text: <VERIFICATION_CODE> is your verification code.
An optional security disclaimer: For your security, do not share this code.
An optional expiration warning (optional): This code expires in <NUM_MINUTES> minutes.
A one-tap autofill button.
Notes:
The “I didn’t request a code” button is currently in beta and is being rolled out incrementally to business customers.
The OTP Android SDK is in beta and features a simplified workflow for implementing one-tap and zero-tap authentication templates. You can learn how to use it below.
Limitations
One-tap autofill buttons are only supported on Android. If you send an authentication template to a WhatsApp user who is using a non-Android device, the WhatsApp client will display a copy code button instead. URLs, media, and emojis are not supported.Creating authentication templates
Use the WhatsApp Business Account > Message Templates endpoint to create authentication templates.Request syntax
otp, but upon creation the button type will be set to url. You can confirm this by performing a GET request on a newly created authentication template and analyzing its components.
Request parameters
| Placeholder | Description | Example Value |
|---|---|---|
<AUTOFILL_BUTTON_TEXT>String | Optional. One-tap autofill button label text. If omitted, the autofill text will default to a pre-set value, localized to the template’s language. For example, Autofill for English (US).Maximum 25 characters. | Autofill |
<CODE_EXPIRATION>Integer | Optional. Indicates the number of minutes the password or code is valid. If included, the code expiration warning and this value will be displayed in the delivered message. The button will be disabled in the delivered message the indicated number of minutes from when the message was sent. If omitted, the code expiration warning will not be displayed in the delivered message. In addition, the button will be disabled 10 minutes from when the message was sent. Minimum 1, maximum 90. | 5 |
<COPY_CODE_BUTTON_TEXT>String | Optional. Copy code button label text. If omitted, the text will default to a pre-set value localized to the template’s language. For example, Copy Code for English (US).If included, the authentication template message will display a copy code button with this text if the message fails the eligibility check. Maximum 25 characters. | Copy Code |
<PACKAGE_NAME>String | Required. Your Android app’s package name. The string must have at least two segments (one or more dots), and each segment must start with a letter. All characters must be alphanumeric or an underscore [ a-zA-Z0-9_].If using Graph API version 20.0 or older, you can define your app’s package name outside of the supported_apps array, but this is not recommended. See Supported Apps below.Maximum 224 characters. | com.example.luckyshrub |
<SECURITY_RECOMMENDATION>Boolean | Optional. Set to true if you want the template to include the string, For your security, do not share this code. Set to false to exclude the string. | true |
<SIGNATURE_HASH>String | Required. Your app signing key hash. See App Signing Key Hash below. All characters must be either alphanumeric, +, /, or = (a-zA-Z0-9+/=).If using Graph API version 20.0 or older, you can define your app’s signature hash outside of the supported_apps array, but this is not recommended. See Supported Apps below.Must be exactly 11 characters. | K8a/AINcGX7 |
<TEMPLATE_LANGUAGE>String | Required. Template language and locale code. | en_US |
<TEMPLATE_NAME>String | Required. Template name. Maximum 512 characters. | verification_code |
<TIME_TO_LIVE>Integer | Optional. Authentication message time-to-live value, in seconds. See Customizing Time-To-Live. | 60 |
Example request
This example creates a template named “authentication_code_autofill_button” categorized asauthentication with all optional text strings enabled and a one-tap autofill button.
Example response
Webhooks
The button messages webhook is triggered whenever a user taps the “I didn’t request a code” button within the message.Example webhook
App signing key hash
You must include your app signing key hash in your post body. To calculate your hash, follow Google’s instructions for computing your app’s hash string. Alternatively, if you follow Google’s instructions and download your app signing key certificate (step 1), you can use your certificate with the sms_retriever_hash_v9.sh shell script to compute the hash. For example:Supported apps
Thesupported_apps array allows you define pairs of app package names and signing key hashes for up to 5 apps. This can be useful if you have different app builds and want each of them to be able to initiate the handshake:
buttons object properties, but this is not recommended as we will stop supporting this method starting with version 21.0:
Handshake
You must signal to the WhatsApp client to expect imminent delivery of a password or code. You can do this by initiating a “handshake”. A handshake is an Android intent and public class that you implement but that the WhatsApp client can start. When a user in your app requests a one-time password or verification code and chooses for it to be delivered to their WhatsApp number, first perform the handshake, then call our API to send the authentication template message. When the WhatsApp client receives the message, it will perform an eligibility check, and if there are no errors, start the intent and display the message to the user. Finally, when the user taps the message’s one-tap autofill button, we automatically load your app and pass it the password or code.
If you do not perform a handshake before sending the message, or the message fails an eligibility check, the delivered message will display a copy code button instead of a one-tap button.
Eligibility check
The WhatsApp client performs the following checks when it receives an authentication template message. If any check fails, the one-tap autofill button will be replaced with a copy code button. The handshake was initiated no more than 10 minutes ago (or no more than the number of minutes indicated by the template’scode_expiration_minutes property, if present).
The package name in the message (defined in the package_name property in the components array upon template creation) matches the package name set on the intent. The match is determined through the getCreatorPackage method called in the PendingIntent object provided by your application.
None of the other apps that you included in the template’s list of supported_apps initiated a handshake in the last 10 minutes (or the number of minutes indicated by the template’s code_expiration_minutes property, if present).
The app signing key hash in the message (defined in the signature_hash property in the components array upon template creation) matches your installed app’s signing key hash.
The message includes the one-tap autofill button text.
Your app has defined an activity to receive the password or code.
Android notifications
Android notifications indicating receipt of a WhatsApp authentication template message will only appear on the user’s Android device if: The user is logged into the WhatsApp app or WhatsApp Business app with the phone number (account) that the message was sent to. The user is logged into your app. Android OS is KitKat (4.4, API 19) or above. Show notifications is enabled ( Settings > Notifications) in the WhatsApp app or WhatsApp Business app. Device level notification is enabled for the WhatsApp app or WhatsApp Business app. Prior message threads in the WhatsApp app or WhatsApp Business app between the user and your business are not muted.Using the SDK (Beta)
The OTP Android SDK is available in beta. It can be used to perform handshakes, as well as other functions in both one-tap and zero-tap authentication templates. To access SDK functionality, add the following configuration to your Gradle file:mavenCentral():
Activity
Declare an activity and intent filter that can receive the one-time password or code. The intent filter must have the action namecom.whatsapp.otp.OTP_RETRIEVED.
Activity class
Using the SDK (Preferred)
Define the activity public class and instantiate aWhatsAppOtpIncomingIntentHandler object to handle the intent, validate the OTP code, and handle errors.
Without the SDK
Define the activity public class that can accept the code once it has been passed to your app.Initiating the handshake
Using the SDK (Preferred)
Performing a handshake can be done by instantiating theWhatsAppOtpHandler object and passing in your context to the .sendOtpIntentToWhatsApp() method:
Without the SDK
This example demonstrates one way to initiate a handshake with the WhatsApp client.Checking if WhatsApp is installed on Android
You can check WhatsApp installation before offering WhatsApp as an option if you expect both WhatsApp and your app to be on the same device. First, you need to add the following to yourAndroidManifest.xml file:
Using the SDK (Preferred)
Instantiate theWhatsAppOtpHandler object:
isWhatsAppInstalled method as the clause in an If statement:
Without the SDK
Checking if WhatsApp is installed on iOS
Use the following code in your iOS application to check if WhatsApp is installedError signals
See Error Signals that can help with debugging.Sample app
See our WhatsApp One-Time Password (OTP) Sample App for Android on Github. The sample app demonstrates how to send and receive OTP passwords and codes via the API, how to integrate the one-tap autofill and copy code buttons, how to create a template, and how to spin up a sample server.Sending authentication template
This document explains how to send approved authentication templates with one-time password buttons. Note that you must first initiate a handshake between your app and the WhatsApp client. See Handshake above.Request
Use the WhatsApp Business Phone Number > Messages endpoint to send an authentication template message with a one-time password button.Request syntax
Request parameters
| Placeholder | Description | Sample Value |
|---|---|---|
<CUSTOMER_PHONE_NUMBER> | The customer’s WhatsApp phone number. | 12015553931 |
<ONE-TIME PASSWORD> | The one-time password or verification code to be delivered to the customer. Note that this value must appear twice in the payload. Maximum 15 characters. | J$FpnYnP |
<TEMPLATE_LANGUAGE_CODE> | The template’s language and locale code. | en_US |
<TEMPLATE_NAME> | The template’s name. | verification_code |
Response
Upon success, the API will respond with:Response parameters
| Placeholder | Description | Sample Value |
|---|---|---|
<INPUT>String | The customer phone number that the message was sent to. This may not match wa_id. | +16315551234 |
<WA_ID>String | WhatsApp ID of the customer who the message was sent to. This may not match input. | +16315551234 |
<ID>String | WhatsApp message ID. You can use the ID listed after “wamid.” to track your message status. | wamid.HBgLMTY1MDM4Nzk0MzkVAgARGBI3N0EyQUJDMjFEQzZCQUMzODMA |

