Fetch Group
Overview
Retrieve details of a specific group by its ID.Playground
Endpoint
GET/api/content/v2/groups/{group}
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
group | String | Yes | The ID of the group to fetch |
Request Example
Response Example
Status Code: 200Fetch User Details
Overview
Fetch detailed information for a specific user by their ID.Playground
Endpoint
GET/api/identity/v1/users/{userId}
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
userId | String | Yes | The ID of the user |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
parts | String | No | Specifies the detail level, e.g., detailed |
Request Example
Response Example
Status Code: 200Create a Group
Overview
Create a new group with the specified details.Playground
Endpoint
POST/api/content/v2/groups
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
name | String | Yes | Name of the group |
description | String | No | Description of the group |
type | String | Yes | Group type: closed, open, or dynamic |
Request Example
Response Example
Status Code: 200Add People to a Group
Overview
Add a user to a specific group.Playground
Endpoint
PUT/api/content/v2/groups/{group}/user/{userId}
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
group | String | Yes | The ID of the group |
userId | String | Yes | The ID of the user to add to the group |
Request Example
Response Example
Status Code: 200Remove a Person from a Group
Overview
Remove a user from a specific group.Playground
Endpoint
DELETE/api/content/v2/groups/{group}/removeuser/{userId}
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
group | String | Yes | The ID of the group |
userId | String | Yes | The ID of the user to remove |
Request Example
Response Example
Status Code: 200Remove Multiple People from a Group
Overview
Remove multiple users from a specific group.Playground
Endpoint
PUT/api/content/v2/groups/access
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
groupId | String | Yes | The ID of the group |
removeMembers | Array | Yes | List of members to remove, with type and id |