# 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.

```javascript
<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](https://docs.adnuntius.com/adnuntius-data/api-documentation/fields) for more information about what data can be sent with the profile update request.

[See here how you can update a user profile using the HTTP API instead](https://docs.adnuntius.com/adnuntius-data/api-documentation/http/http-profile).
