interface GetUsersFromGroup {
    groupId?: string;
    groupname?: string;
    includeInactiveUsers?: boolean;
    maxResults?: number;
    startAt?: number;
}

Properties

groupId?: string

The ID of the group. This parameter cannot be used with the groupName parameter.

groupname?: string

As a group's name can change, use of groupId is recommended to identify a group. The name of the group. This parameter cannot be used with the groupId parameter.

includeInactiveUsers?: boolean

Include inactive users.

maxResults?: number

The maximum number of items to return per page.

startAt?: number

The index of the first item to return in a page of results (page offset).