Post

1 follower Follow
0
Avatar

How to add User into the Group and remove User from the Group using Calrizen REST API?

Hi,

Through the Clarizen REST API, is there a way to Add User into the Group and Remove User from the Group. 

If so please provide me sample request and response for the above services.

Thanks, 

Balaji.

Balaji Answered

Please sign in to leave a comment.

1 comment

0
Avatar

Create a new object of type GroupMemberLink and set the "container" field to the ID of the group and the "member" field to the user id.

something like PUT /services/data/GroupMemberLink 

{

  "container": "/group/xyz12345",

 "user": /user/someUserId123"

}

Eyal Post 0 votes
Comment actions Permalink