Tagging a subscriber using library
The following steps describe how to manage tags in website using library.
Add tags
<script>
//add one tag
sarepush('addTags', {tagName: 'tagValue'}, function (response) {
console.log(response);
});
//or multiple tags
sarepush('addTags', {
firstName: 'David',
company: 'Google'
uniqueId: 123456,
otherTag: ''
}, function (response) {
console.log(response);
});
</script>Remove tags
Last updated