lambda_eventer
v1.0.3
Published
An AWS Lambda function for posting an AWS SNS event message to an external service as JSON.
Readme
An AWS Lambda function for posting an AWS SNS event message to an external service as JSON.
var lambda = require('./index');
var path = require('path');
// Load .env into environment variables
require('dotenv').load({
path: path.join(__dirname, '.env')
});
var message = {
"user_id": "30",
"email": "[email protected]",
"name": "Hoban Washburne",
"signed_up_at": 1392731331,
"last_seen_ip" : "1.2.3.4",
"last_seen_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9",
"custom_attributes": {
"paid_subscriber" : true,
"monthly_spend": 155.5,
"team_mates": 10
}
};
lambda.handler({
Records:[
{
Sns: {
Message:JSON.stringify(message)
}
}
]
}, {
fail: function(err) {
console.log(err);
},
succeed: function(res) {
console.log(res);
}
});$ curl https://api.intercom.io/users \
-X POST \
-u xxx:xxx \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' -d '
{
"user_id": "25",
"email": "[email protected]",
"name": "Hoban Washburne",
"signed_up_at": 1392731331,
"last_seen_ip" : "1.2.3.4",
"last_seen_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9",
"custom_attributes": {
"paid_subscriber" : true,
"monthly_spend": 155.5,
"team_mates": 9
},
"companies": [
{
"company_id" : "366",
"name" : "Serenity",
"monthly_spend" : 500
}
]
}'