ADNUNTIUS
Search
⌃K

User Profile Updates

Updating the User profile

The example below provides a demonstration of how a profile update can be sent to Adnuntius Data, for a user profile stored in folder 00000000000aaaaa, using the javascript API.
<script src="https://cdn.adnuntius.com/adn.js" async></script>
<script>
window.adn = window.adn || {};
adn.calls = adn.calls || [];
adn.calls.push(function() {
adn.visitor('00000000000aaaaa', {
profileValues: {
firstName: "Bruce",
dateOfBirth: "2001-120-31",
lastTransactionAmount: 7000000
}
});
});
</script>
See the section on Profile Fields for more information about what data can be sent with the profile update request.