Issue Tags
This resource lets you access and work with issue tags in YouTrack.
Resource | /api/issueTags |
Returned entity | IssueTag. For the description of the entity attributes, see Supported Fields section. |
Supported methods |
|
Supported sub-resources |
|
IssueTag attributes
Represents an issue tag.
Extends WatchFolder
This table describes attributes of the IssueTag
entity.
To receive an attribute in the response from server, specify it explicitly in the request parameter
fields
.To update an attribute, provide it in the body of a POST request.
Field | Type | Description |
---|---|---|
issues | Array of Issues | The collection of issues that this tag is added to. |
color | FieldStyle | The color settings of the tag. |
untagOnResolve | Boolean | If |
owner | User | A user who created — hence, owns — the watch folder. |
visibleFor | UserGroup | Group of users that can see this watch folder. If the folder is visible only for its owner, this property is null. |
updateableBy | UserGroup | Group of users that can update this watch folder. If only the folder's owner can update it, this property is null. |
name | String | The name of the issue folder. |
Read a List of IssueTags
Get all tags that are visible to the current user.
Request syntax
Request parameters
Parameter | Type | Description |
---|---|---|
fields | String | A list of IssueTag attributes that should be returned in the response. If no field is specified,only the |
$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 entries that are returned in the response. |
Sample
Sample request
Sample response body
Add a New IssueTag
Create a new tag.
Required attributes: name
Required permissions
Requires Create Watch Folder permission.
Request syntax
Request parameters
Parameter | Type | Description |
---|---|---|
fields | String | A list of IssueTag attributes that should be returned in the response. If no field is specified,only the |
Sample
Let's create a new tag and share it with a specific user group.