Payemoji provides Notification APIs which can be used to trigger outbound messages to customers. These can be implemented within Klaviyo via Webhooks and used within Klaviyo Flows. For example, when a new customer signs up and triggers the “New Customer” Klaviyo Flow the Webhook can be triggered to request Payemoji to then send a welcome WhatsApp or SMS message to the customer.
There are 3
different options to integrate to the Payemoji APIs:
Payemoji provides an API suite which integrates to Klaviyo. Payemoji uses OAuth2 authentication which can be implemented via a Private App created within Klaviyo. Implementing this HTTP request may require custom code within the Klaviyo Flows.
Documentation for these Notification APIs can be found here
In this option, the Webhook is pointed toward an intermediary service which manage the credentials and configuration for the Payemoji APIs. Each type of message is setup on the Payemoji side with a Template ID provided in order to send the required message. For those using WhatsApp these would be paired with the WhatsApp template created for this purpose. This WhatsApp template would be pre-configured within the Payemoji Template ID.
The Klaviyo Webhook is configured with basic security and key value pairs set such as:
For example, Payemoji has configured a “New Customer” Template which has been designated as Template ID 2456. The “New Customer” template has several variables required:
“Welcome {{name}} and thank you for joining ABC Limited! You account ID is {{accountId}}”
The webhook would be configured similar to this (with the appropriate field references from Klaviyo):
{
"name": "Joe",
"accountId": "987654",
"phoneNumber": "+3538111111",
"templateId": "2456"
}
This option works similar to Option 2 but allows our customers greater control over ongoing management of the Webhooks. Generic Templates and their respective IDs would be provided which could then be matched with the appropriate WhatsApp template created by our customer.
For example, Payemoji could provide 3 different Template IDs to send a WhatsApp template (example IDs only):
· WhatsApp Template Message with 1 Internal Variable 2678
· WhatsApp Template Message with 2 Internal Variables 2679
· WhatsApp Template Message with 3 Internal Variables 2680
The example above for “New Customer” template would be a message with 2 internal variables being {{name}} and {{accountId}} and so could send that message using Tempalte ID 2679 in the table above.
This options allows you to create your own WhatsApp Templates in the Meta Business Manager and send these out via our dynamic webhook.
For example, ABC Limited wishes to now send an order confirmation message via WhatsApp. They have created a WhatsApp Template called “order_confirm_WA_Template” which has the following format:
“Thank you for your recent order {{1}}! You order has been shipped”
ABC can now use the Payemoji Template ID 2678 as it only has 1 variable it needs to send. The format for this Webhook would look something like this:
{
"1": "Joe",
"phoneNumber": "+3538111111",
"templateId": "2678",
"whatsappTemplate": "order_confirm_WA_Template"
}
In this case, the variables are not named but defined by numbers instead to keep them generic (and also matches the WhatsApp Template format by numbers). The name of the WhatsApp Template needs also to be sent to tell the Payemoji platform which one to use. In addition, if other information is configured within the WhatsApp Template such as an image this URL would also be included as a key value pair.
The API integration has the most flexibility and is the fastest in terms of message delivery as it has one less than hop than those with an intermediary however this is a little more complicated and may require a developer.
Options 2
and 3 can be done by a “Power User” of Klaviyo given it is relatively straightforward. Option 2 is the simplest with Option 3 being
a little more intricate but allows our Customers to be more flexible and self
sufficient to send more messages.
For more details using Webhooks in Klaviyo click here
Reach out to Payemoji Support at support@payemoji.com and we will get you setup!