update #
Performs a partial content update on this object.
update(content, [options], [callback]) #
Arguments | Type | Description |
---|---|---|
content | JSON Object | Profile content |
options | JSON Object | Optional parameters |
callback | function | Optional callback handling the response |
Options #
Option | Type | Description | Default |
---|---|---|---|
queuable | boolean | Make this request queuable or not | true |
Return Value #
Returns the Profile
object to allow chaining.
Callback Response #
Returns the updated version of this object.
Usage #
var updateContent = {
policies: [
{roleId: 'myrole'},
]
};
// Using callbacks (NodeJS or Web Browser)
profile.update(updateContent, function(err, updatedProfile) {
// the updatedProfile variable is the updated Profile object
})
// Using promises (NodeJS)
profile
.updatePromise(updateContent)
.then(updatedProfile => {
// the updatedProfile variable is the updated Profile object
});
Edit this page on Github(opens new window)