Subgroups of a Specific Group
This resource provides access to subgroups that belong to a specific group.
Resource | <Hub Service URL>/api/rest/usergroups/{groupID}/subgroups |
Returned entity | UserGroup. For the description of the entity attributes, see UserGroup Attributes. |
Supported methods |
|
Group Attributes
Represents a group in Hub and YouTrack.
Attributes
This table describes attributes of the UserGroup
entity.
To receive an attribute in the response from the server, specify it explicitly in the
fields
request parameter.To update an attribute, provide it in the body of a POST request.
Field | Type | Description |
---|---|---|
id | String | The unique identifier of the group. |
aliases | Set.<alias> | The set of IDs of user groups that have been merged into this group. |
allUsers | Boolean | |
autoJoin | Boolean | Determines whether new users are added to this group automatically. |
autoJoinDomain | String | Stores an optional email domain used for auto-joining users to this group. If the user's email belongs to this domain, they are added to this group automatically. |
description | String | The description of the group. |
iconUrl | String | The URL of the icon of the group. |
name | String | The name of the group. |
organizations | Set.<organization> | The list of organizations that this group belongs to. |
ownUsers | Set.<user> | The list of users that belong to this group directly. |
parent | userGroup | The parent group that this group belongs to. |
project | Set.<project> | The list of projects in which the group is used as a resource. |
projectRoles | Set.<projectRole> | The list of project roles assigned to the users of this group. |
subgroups | Set.<userGroup> | The list of groups that belong to this group as sub-groups. |
userCount | Integer | The number of users that belong to the group. |
users | Set.<user> | The list of all users that belong to this group. |
Read a List of Subgroups
Get all subgroups of a group that match the specified query.
Request Syntax
Request Parameters
Parameter | Type | Description |
---|---|---|
fields | String | Optional. Returns only the specified subset of the fields for each group. Use Fields Syntax to define the subset. |
$skip | Int | Optional. Lets you set a number of returned entities to skip before returning the first one. |
$top | Int | Optional. Lets you specify the maximum number of UserGroups that are returned in the response. |
query | String | Optional. Lets you specify a search query to filter the returned results. See Query Syntax for the definition of supported logical operations syntax. For the UserGroup fields and tuples, see Hub REST API Reference. |
orderBy | String | Optional Returns the list of Users sorted by a specified field. See Sorting Syntax for details. UserGroups support ordering by the following fields: |
Sample
Request
Response Body
Add a Subgroup
Add a subgroup to a group.
Required fields: id
.
Request Syntax
Request Parameters
Parameter | Type | Description |
---|---|---|
fields | String | A list of UserGroup attributes that should be returned in the response. If no field is specified, only the |