Skip to content

Instantly share code, notes, and snippets.

@humannus
Created May 12, 2021 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save humannus/045bc66653494d33d9fee5ec754c7149 to your computer and use it in GitHub Desktop.
Save humannus/045bc66653494d33d9fee5ec754c7149 to your computer and use it in GitHub Desktop.
Example of setting attributes with webhooks in new visual builder
'use strict';
const express = require('express');
const bodyParser = require('body-parser');
const app = express().use(bodyParser.json()); // creates http server
const token = 'TOKEN'; // type here your verification token
app.get('/', (req, res) => {
// check if verification token is correct
if (req.query.token !== token) {
return res.sendStatus(401);
}
// return challenge
return res.end(req.query.challenge);
});
app.post('/', (req, res) => {
// check if verification token is correct
if (req.query.token !== token) {
return res.sendStatus(401);
}
// print request body
console.log(req.body);
// return responses and actions
const data = {
// return responses
responses: [
{
"type": "text",
"message": `You are now a subscriber of our newsletter!`
}
],
// return attributes
attributes: {
signedUpForNewsletter: 'yes'
}
};
res.json(data);
});
app.listen(3000, () => console.log('[ChatBot] Webhook is listening'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment