v1
latestOpenAPI 3.0.02026-07-2491237338.9 KBWhatsApp Templates
Edit a template
Edits a WhatsApp template by name and language. Editing a template replaces its old contents entirely, so include any components you wish to preserve as well as components you wish to update using the components parameter.
Only templates in APPROVED, REJECTED, or PAUSED status can be edited. ARCHIVED templates cannot be edited.
patch/whatsapp/templates/{wabaId}/{name}/{language}
Path parameters
wabaIdstring required
Example:whatsapp-business-account-id
WhatsApp Business Account ID.
namestring required
Example:sample_whatsapp_template
Name of the template.
languagestring required
Example:en
Language code of the template. See Supported Languages for all codes.
Request body
Example request
{
"components": [
{
"buttons": [
{
"autofill_text": "Autofill",
"package_name": "com.example.myapplication",
"signature_hash": "K8a%2FAINcGX7",
"flow_id": "1",
"flow_action": "navigate",
"navigate_screen": "WELCOME_SCREEN"
}
],
"code_expiration_minutes": 5,
"limited_time_offer": {
"text": "Expiring offer!"
},
"cards": [
{
"components": [
{
"buttons": [
{
"autofill_text": "Autofill",
"package_name": "com.example.myapplication",
"signature_hash": "K8a%2FAINcGX7",
"flow_id": "1",
"flow_action": "navigate",
"navigate_screen": "WELCOME_SCREEN"
}
]
}
]
}
]
}
],
"messageSendTtlSeconds": 600,
"ctaUrlLinkTrackingOptedOut": true
}Response
Successfully edited the template.
Example response
{
"officialTemplateId": "official-template-id",
"wabaId": "whatsapp-business-account-id",
"language": "en_US",
"messageSendTtlSeconds": 600,
"components": [
{
"buttons": [
{
"autofill_text": "Autofill",
"package_name": "com.example.myapplication",
"signature_hash": "K8a%2FAINcGX7",
"flow_id": "1",
"flow_action": "navigate",
"navigate_screen": "WELCOME_SCREEN"
}
],
"code_expiration_minutes": 5,
"limited_time_offer": {
"text": "Expiring offer!"
},
"cards": [
{
"components": [
{
"buttons": [
{
"autofill_text": "Autofill",
"package_name": "com.example.myapplication",
"signature_hash": "K8a%2FAINcGX7",
"flow_id": "1",
"flow_action": "navigate",
"navigate_screen": "WELCOME_SCREEN"
}
]
}
]
}
]
}
],
"status": "REJECTED",
"createTime": "2022-06-01T12:00:00.000Z",
"updateTime": "2022-06-01T12:00:00.000Z",
"disableDate": "December 9, 2022",
"whatsappApiError": {
"message": "HSM Template creation failed",
"type": "OAuthException",
"error_user_msg": "This message template cannot be created.",
"error_user_title": "Message Cannot Be Submitted",
"fbtrace_id": "AVGjJ7ia2zJkrHG"
}
}