How to update Justuno Profile Properties via javascript identify call

Websites can update Justuno profile property values to on an event or page load without interaction from a website visitor.

If your website identifies any details about a website visitor and want to send update those details on the Justuno Profile, you can call the following javascript and provide those Justuno profile property keys and values.  Please ensure any custom profile properties are created within your Justuno account.

Use the Property Key value from the profile properties section of your Justuno portal

var _juidentify = window._juidentify || [];
_juidentify.push([
"identify",
{
email: "john.d@domain.com",
first_name: "John",
last_name: "Doe",
},
]);

Please note that properties marked as Read Only: Yes cannot be updated via this identify script and will be ignored if attempted.