Skip to main content
Version: Node SDK

Update Role

This method will update an existing role

Code Sample

import { Salable } from '@salable/node-sdk';

const salable = new Salable('{{API_KEY}}');

const role = await salable.rbac.roles.update('41cf33a2-136e-4959-b5c7-73889ab94eff', {
name: 'some-name',
description: 'some-description',
permissions: {
add: ['41cf33a2-136e-4959-b5c7-73889ab94eff'],
remove: ['41cf33a2-136e-4959-b5c7-73889ab94eff'],
},
});

Parameters

uuid (required)

Type: string

uuid of the role you want to update


roleDetails (required)

Type: IUpdateRoleInput

The details to update on the role

Return Type

Promise that resolves to the updated role