Skip to main content

Add a user to a group

Log in to add to favourites

Example

JAVASCRIPT
1
2
3
4
5
6
7
8
9
const groupId = "89CEE207-6F12-4D27-8693-B7693766A82D"; const userId = "F8B27A8F-F1E5-48EF-A5E6-19A791030C0A"; client.security.groups.addUser(groupId, userId) .then(result => { console.log('API call was successful'); }) .catch(error => { console.log('API call error: ', error); });

Example

JAVASCRIPT
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const groupId = "89CEE207-6F12-4D27-8693-B7693766A82D"; const userIds = [ "75490b0f-56f7-4690-a20a-6f2a822f1d3f", "20b5e923-beb8-44ab-8bb4-34467582230f", "13f8cd48-7765-47b7-9fa3-2ad9c935a4be", "3c3d98a1-c80a-49d1-b602-f38ad2b01af8", "11f5ce76-ca86-45d8-9928-d7fd56863ec7" ]; client.security.groups.addUsers(groupId, userIds) .then(result => { console.log('API call was successful'); }) .catch(error => { console.log('API call error: ', error); });

Still need help?

New support request