Skip to content

Instantly share code, notes, and snippets.

@biodunalfet
Created May 15, 2017 14:46
Show Gist options
  • Save biodunalfet/c965be1c6dcb5d177ec1364fbb0f51d3 to your computer and use it in GitHub Desktop.
Save biodunalfet/c965be1c6dcb5d177ec1364fbb0f51d3 to your computer and use it in GitHub Desktop.
tagmanager.accounts.containers.triggers.create(
{
accountId : accountId,
containerId : containerId,
name : "First Trigger",
type : "customEvent",
eventName: {
type: "template",
value: "firstTrigger"
}
}, function(err){
if (err) {
res.json({error : err});
}
else {
res.json({message : "success!"});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment