whatsapp_template
Allows the creation of messages from WhatApp Templates.
whatsapp_template(name=String, components=Array, language=String)
whatsapp_template(name=String, components=Array, language=String)Platforms
Platform
Supported
Usage
@reply.whatsapp_template("hello_world")On Demand
user = User.first
user.notification.whatsapp_template(
"sample_issue_resolution",
[
{
type: :body,
parameters: [
{
type: :text,
text: "Martín"
}
]
}
]
)
user.sendParams
Name
Description
Last updated
Was this helpful?