Skip to main content
Version: 2.0

Link Tracking Click Event

When a user clicks a Visit Website CTA button on a template, a Click Event Webhook will be sent to the enterprise-configured callback URL. This webhook notifies the enterprise about the click interaction along with relevant metadata.

Payload Description

NameDescriptionJSON Type
msisdnRecipient mobile numberString
timestampClick timestampString
urlThe target long URL clicked by the userString
responseIdUnique identifier generated for the click responseString
statusEvent type. Always set to clickString
userAgentUser agent of the device or browser usedString
userAddressIP address of the user at the time of clickString
tagsCustom metadata passed during message submissionObject

Payload:

{
"statuses": [
{
"msisdn": "<msisdn>",
"timestamp": "<timestamp>",
"url": "<targetUrl>",
"responseId": "<responseId>",
"status": "click",
"userAgent": "<userAgent>",
"tags": {
"MSISDN": "<msisdn>",
"appID": "<appId>",
"campaign": "<campaignName>",
"messageId": "<messageId>",
"responseId": "<responseId>",
"template": "<templateName>"
}
}
]
}