Tap target title URL override | Developer Documentation
Tap target title URL override
Updated: Nov 13, 2025
This document explains how to send approved message templates using the
tap_target_configuration component within a template message. Tap target override enables image-based, text-based, and header-less message templates to function as interactive Call-to-Action URL buttons. These buttons display a custom title and open the destination linked to the first URL button.WhatsApp Business Accounts (WABAs) must be fully verified and consistently maintain high-quality standards to ensure compliance and access to this component.

Request syntax
curl 'https://graph.facebook.com/<API_VERSION>/<WHATSAPP_BUSINESS_PHONE_NUMBER_ID>/messages' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer <ACCESS_TOKEN>' \ -d ' { "messaging_product": "whatsapp", "recipient_type": "individual", "to": "<WHATSAPP_USER_PHONE_NUMBER>", "type": "template", "template": { "name": "<TEMPLATE_NAME>", "language": { "code": "<LANGUAGE_AND_LOCALE_CODE>" }, "components": [ { "type": "tap_target_configuration", "parameters": [ { "type": "tap_target_configuration", "tap_target_configuration": [ { "url": "<URL>", "title": "<TITLE>" } ] } ] }, <!-- Add additional components --> ] } }
Request parameters
| | |
| ||
| | |
| | |
| | |
| | |
| | |
| |
Example request
tap_target_configurationcurl 'https://graph.facebook.com/v25.0/106540352242922/messages' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer EAAJB...' \
-d '
{
"messaging_product": "whatsapp",
"recipient_type": "individual",
"to": "+1233214532",
"type": "template",
"template": {
"name": "august_promotion",
"language": {
"code": "en"
},
"components": [
{
"type": "header",
"parameters": [
{
"type": "image",
"image": {
"link": "https://www.luckyshrubs.com"
}
}
]
},
{
"type": "body",
"parameters": [
{
"type": "text",
"text": "Hello Andy..."
}
]
},
{
"type": "tap_target_configuration",
"parameters": [
{
"type": "tap_target_configuration",
"tap_target_configuration": [
{
"url": "https://www.luckyshrubs.com/",
"title": "Offer Details"
}
]
}
]
}
]
}
}'Example response
{ "messaging_product": "whatsapp", "contacts": [ { "input": "+1233214532", "wa_id": "1233214532" } ], "messages": [ { "id": "wamid.HBgLMTMyMzI4NjU2NzgVAgARGBJBQzRBRDBEMDEwQzVBM0M0QkIA", "message_status": "accepted" } ] }