Message your customers on Zendesk through Connectly
If you are using Zendesk as your main CRM you can route WhatsApp messages to Zendesk.
Customer conversations will be shown as tickets in Zendesk. Whenever you post a reply on the ticket the customer receives a WhatsApp message with your reply.
- 1.Please contact [email protected] to request Zendesk integration functionality. If you do not contact the integration will not work
- 1.
- 2.
- 3.
- 1.Fill in the Input Data
- 2.
- 3.Paste this code in the second step Code by Zapier
// this is wrapped in an `async` function
// you can use await throughout the function
let number = inputData.senderPhoneNumber;
number = number.replace("+", '');
let outputData = {
"name": inputData.senderName,
"text": inputData.messageText,
"phoneNumber": inputData.senderPhoneNumber,
"email": number + "@connectly.ai"
};
return outputData;
- 4.Press Turn On Zap
- 1.Go to this link https://<YOUR_ZENDESK_WORKSPACE>.zendesk.com/admin/apps-integrations/webhooks/webhooks
- 2.
- 3.For the Webhook URL paste this URL: https://api.connectly.ai/proxy/businesses/<CONNECTLY_BUSINESS_ID>/send_message
- 4.Go to this link https://<YOUR_ZENDESK_WORKSPACE>.zendesk.com/admin/objects-rules/rules/triggers
- 5.
- 6.Use this code snippet for the JSON Body
{
"recipient": {
"channelType": "whatsapp",
"id": "{{ticket.requester.phone}}"
},
"message": {
"text": "{{ticket.latest_comment}}"
}
}
Last modified 1yr ago