Operations with Specific UserBundle
This resource lets you work with the sets of users in YouTrack.
Resource |
|
---|---|
Returned entity | UserBundle. For the description of the entity attributes, see Supported Fields section. |
Supported methods |
|
Represents a set of values that contains users. You can add to the set both individual user accounts and groups of users.
Below you can find the list of resources that let you work with this entity.
Extends Bundle
This table describes attributes of the UserBundle
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 ID of the set of users. |
groups | User groups that belong to this bundle. | |
individuals | Individual users that belong to this bundle. | |
aggregatedUsers | All users that belong to this bundle. | |
isUpdateable | Boolean | If |
Get the set of users with the specific ID.
Requires read or update access to one of the fields that use the bundle. If the bundle is not used in any field, Update Project permission is required in at least one project.
GET /api/admin/customFieldSettings/bundles/user/{bundleID}?{fields}
{bundleID} | Database ID of the bundle. |
---|
Parameter | Type | Description |
---|---|---|
fields | String | A list of UserBundle attributes that should be returned in the response. If no field is specified, only the |
https://example.youtrack.cloud/api/admin/customFieldSettings/bundles/user/8-20?fields=name,id,isUpdateable,individuals(login,id,name),groups(name,id),aggregatedUsers(name,id,login)
{
"groups": [],
"aggregatedUsers": [
{
"login": "john.doe",
"name": "John Doe",
"id": "1-2",
"$type": "User"
},
{
"login": "jane.doe",
"name": "Jane Doe",
"id": "1-3",
"$type": "User"
},
{
"login": "Jane_Smith",
"name": "Jane Smith",
"id": "1-4",
"$type": "User"
}
],
"individuals": [
{
"login": "john.doe",
"name": "John Doe",
"id": "1-2",
"$type": "User"
},
{
"login": "jane.doe",
"name": "Jane Doe",
"id": "1-3",
"$type": "User"
},
{
"login": "Jane_Smith",
"name": "Jane Smith",
"id": "1-4",
"$type": "User"
}
],
"isUpdateable": true,
"name": "Hero-team",
"id": "8-20",
"$type": "UserBundle"
}
Change the set of users with the specific ID.
Requires Update Project permission in all projects where the bundle is used. If the bundle is not used in any field, Update Project permission is required in at least one project.
POST /api/admin/customFieldSettings/bundles/user/{bundleID}?{fields}
{bundleID} | Database ID of the bundle. |
---|
Parameter | Type | Description |
---|---|---|
fields | String | A list of UserBundle attributes that should be returned in the response. If no field is specified, only the |
Let's add a group of users to the specific set of users, and change the name of this set to 'Heroes'.
https://example.youtrack.cloud/api/admin/customFieldSettings/bundles/user/8-20?fields=id,name,aggregatedUsers(id,login),groups(name,id)
{
"groups": [
{
"id": "3-2"
}
],
"name": "Heroes",
"isUpdateable": true
}
{
"groups": [
{
"name": "Sample Project Team",
"id": "3-2",
"$type": "UserGroup"
}
],
"aggregatedUsers": [
{
"login": "root",
"id": "1-1",
"$type": "User"
},
{
"login": "john.doe",
"id": "1-2",
"$type": "User"
},
{
"login": "jane.doe",
"id": "1-3",
"$type": "User"
},
{
"login": "Jane_Smith",
"id": "1-4",
"$type": "User"
}
],
"name": "Heroes",
"id": "8-20",
"$type": "UserBundle"
}
Delete the set of users with the specific ID.
Requires Update Project permission in all projects where the bundle is used. If the bundle is not used in any field, Update Project permission is required in at least one project.
DELETE /api/admin/customFieldSettings/bundles/user/{bundleID}
{bundleID} | Database ID of the bundle. |
---|
Parameter | Type | Description |
---|---|---|
fields | String | A list of UserBundle attributes that should be returned in the response. If no field is specified, only the |
https://example.youtrack.cloud/api/admin/customFieldSettings/bundles/user/8-18