Function: addUserToGroupByGroupId()
ts
function addUserToGroupByGroupId(client, parameters): Promise<void>;Defined in: src/v1/api/group.ts:144
Adds a user as a member in a group represented by its groupId
Permissions required: User must be a site admin.
Parameters
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { accountId: string; groupId: string; } | - |
parameters.accountId | string | - |
parameters.groupId | string | GroupId of the group whose membership is updated |
Returns
Promise<void>