/
sendCTLiveSocialTemplateMessage

sendCTLiveSocialTemplateMessage

Send a CTLiveSocial template message to a customer in a whatsapp chat.

Parameters:

Name

Mandatory

Type

Description

Name

Mandatory

Type

Description

servicePhoneNumber

status:YES

status:STRING

whatsapp business number

customerPhoneNumber

status:YES

status:string

customer phone number

templateName

status:YES

status:string

template name

language

status:YES

status:string

template language

header

status:YES

status:object

template header (null if there is no header or no multimedia header). See table below for details.

headerData

status:YES

status:array

array of strings representing the header parameters. (pass empty array in case there are no parameters)

headerText

status:YES

status:string

header text (null if header type is not text)

bodyData

status:YES

status:array

array of strings representing the body parameters. (pass empty array in case there are no parameters)

bodyText

status:YES

status:string

body text

footerText

status:YES

status:string

footer text (null if there is no footer)

url

status:YES

status:string

url (null if there is no url)

dynamic_url

status:YES

status:array

array of string representing the url parameter. (pass empty array in case there is no url parameter)

 

Header object:

Name

Mandatory

Type

Description

Name

Mandatory

Type

Description

type

status:YES

status:STRING

header type. Can assume one of the following values:

  • image

  • video

  • document

data

status:YES

status:string

base64 string

documentType

status:YES

status:string

document extension

fileName

status:YES

status:string

file name (extension included)

 

Returns:

Type

Description

Type

Description

JS Promise

 

A Javascript Promise that return an object containing the following properties:

  • result: if true, the service response was performed correctly

  • error: contains the error description if an error has occurred in the request

 

Example:

template only text:

LIVECHAT.sendCTLiveSocialTemplateMessage("3902124122690", "393403602056", "hello_world", "en_US", null, [], "Hello World", [], "Welcome and congratulations!! This message demonstrates your ability to send a WhatsApp message notification from the Cloud API, hosted by Meta. Thank you for taking the time to test with us.", "WhatsApp Business Platform sample message", null, [] );

template text with parameter:

LIVECHAT.sendCTLiveSocialTemplateMessage("3902124122690", "393403602056", "sample_shipping_confirmation", "en_US", null, [], null, ["5"], "Your package has been shipped. It will be delivered in {{1}} business days.", "This message is from an unverified business.", null, [] );

multimedia template with image header:

self.sendCTLiveSocialTemplateMessage("3902124122690", "393403602056", "sample_purchase_feedback", "en_US", { "type": "image", "data": "iVBORw0KGgo…=", "documentType": "png", "fileName": "infobip-logo" }, [], null, ["our latest product"], "Thank you for purchasing {{1}}! We value your feedback and would like to learn more about your experience.", "This message is from an unverified business.", null, [] );

Related content