Note

Applies to: Skype for Business 2015

Local user - Set Note

We can make use of the mePerson object exposed by personsAndGroupsManager and from this object get access to the note property. This property exposes a writeable text property allowing changes via a set(...) method that takes a provided string.

Provide a message and click to change note

var mePerson = application.personsAndGroupsManager.mePerson;
mePerson.note.text.set(message).then(function () {
    // note changed succesfully 
}, function (error) {
    // handle error
});

Other resources

MePerson