Skip to main content

Updated a group resource from a Group object passed as an argument.

update(group: Group): Promise<Group>

Remarks

Only a member of the System Administrators group can update a group resource.

Example

JavaScript
let group = {    
    "id": "4b262379-5bbe-421e-a429-f6e2ab5a849b",
    "name": "Paper Street Soap Company",
    "Description": "Employees of the Paper Street Soap Company", 
    "type": "contensis",
    "custom" : {
        "clientId": "PSSC"
    }
};

client.security.groups.update(group)
    .then(result => {
        console.log('API call result: ', result);
    })
    .catch(error => {
        console.log('API call error: ', error);        
    });

Still need help?

If you still need help after reading this article, don't hesitate to reach out to the Contensis community on Slack or raise a support ticket to get help from our team.
New support request