YouTrack Standalone 2020.6 Help

Operations with Specific Issue

This resource lets you work with issues within the particular project.

Resource

/api/admin/projects/{projectID}/issues/{issueID}

Returned entity

Issue. For the description of the entity attributes, see Supported Fields section.

Supported methods

Issue attributes

Represents an issue in YouTrack.

This table describes attributes of the Issue 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

idReadable

String

The issue ID. Read-only.

created

Long

The timestamp of the moment when the issue was created. Read-only. Can be null.

updated

Long

The timestamp of the last update of the issue. Read-only. Can be null.

resolved

Long

The timestamp of the moment when the issue was assigned a state that is considered to be resolved. Returns null, if the issue is still in an unresolved state. Read-only. Can be null.

numberInProject

Long

The issue number in the project. Read-only.

project

Project

The project to which the issue is assigned. Can be null.

summary

String

The text that is entered as the issue summary. Can be null.

description

String

The text that is entered as the issue description. Can be null.

usesMarkdown

Boolean

When `true`, the issue description is parsed as Markdown. When `false`, the issue description is parsed as YouTrack Wiki. Changing this value does not transform the markup from one syntax to another.

wikifiedDescription

String

Issue description as it is shown in UI after processing with wiki/markdown (including HTML markup). Read-only.

reporter

User

The user who reported (created) the issue. Read-only. Can be null.

updater

User

The user who last updated the issue. Read-only. Can be null.

draftOwner

User

Creator of this draft if issue is a draft, null if issue was already reported. Read-only. Can be null.

isDraft

Boolean

true if issue is a draft, false if it was already reported. Read-only.

visibility

Visibility

Visibility settings of the issue. They describe who is allowed to see the issue. Can be null.

votes

Int

Number of votes for this issue. Read-only.

comments

Array of IssueComments

A list of comments for the issue.

commentsCount

Int

A number of comments in the issue. Read-only.

tags

Array of IssueTags

The list of tags that are added to the issue.

links

Array of IssueLinks

Issue links (for example, `relates to`, `parent for`, and so on). Read-only.

externalIssue

ExternalIssue

Reference to the issue or similar object in an originating third-party system. Read-only. Can be null.

customFields

Array of IssueCustomFields

The collection of custom fields that are present in the issue. Read-only.

voters

IssueVoters

Object that contains data about voters for the issue and for its duplicates. Read-only.

watchers

IssueWatchers

Object that contains data about users watching this issue or its duplicates. Read-only.

attachments

Array of IssueAttachments

The list of attachments in the issue.

subtasks

IssueLink

The list of sub-tasks of the issue. Read-only.

parent

IssueLink

The parent issue for the current one. If the issue is not a sub-task of any issue, then null. Read-only.

Update a Specific Issue

Update a specific issue in the project.

Required permissions

Requires Create Issue permission for issue's reporter and Update Issue permission otherwise.

Request syntax

POST /api/admin/projects/{projectID}/issues/{issueID}?{fields}

{issueID}

Database ID of the issue.

Request parameters

Parameter

Type

Description

fields

String

A list of Issue attributes that should be returned in the response. If no field is specified,only the entityID is returned

Sample

Sample request

curl -L -X POST 'https://example.myjetbrains.com/youtrack/api/admin/projects/0-6/issues/2-74?fields=id,idReadable,summary,description,customFields(id,name,value(id,name))' \ -H 'Accept: application/json' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer perm:am9obi5kb2U=.UG9zdG1hbiBKb2huIERvZQ==.jJe0eYhhkV271j1lCpfknNYOEakNk7' \ --data-raw '{ "summary": "Sample: update an issue in specific project", "description": "This issue is a sample for updating an issue in specific project. Using the `api/admin/projects/:id/issues/:id` endpoint.", "customFields": [ { "value": { "name": "Major", "$type": "EnumBundleElement" }, "name": "Priority", "id": "92-43", "$type": "SingleEnumIssueCustomField" }, { "value": { "name": "Task", "$type": "EnumBundleElement" }, "name": "Type", "id": "92-44", "$type": "SingleEnumIssueCustomField" } ] }'

Sample request body

{ "summary": "Sample: update an issue in specific project", "description": "This issue is a sample for updating an issue in specific project. Using the `api/admin/projects/:id/issues/:id` endpoint.", "customFields": [ { "value": { "name": "Major", "$type": "EnumBundleElement" }, "name": "Priority", "id": "92-43", "$type": "SingleEnumIssueCustomField" }, { "value": { "name": "Task", "$type": "EnumBundleElement" }, "name": "Type", "id": "92-44", "$type": "SingleEnumIssueCustomField" } ] }

Sample response body

{ "description": "This issue is a sample for updating an issue in specific project. Using the `api/admin/projects/:id/issues/:id` endpoint.", "customFields": [ { "value": { "name": "Major", "id": "67-2", "$type": "EnumBundleElement" }, "name": "Priority", "id": "92-43", "$type": "SingleEnumIssueCustomField" }, { "value": { "name": "Task", "id": "67-9", "$type": "EnumBundleElement" }, "name": "Type", "id": "92-44", "$type": "SingleEnumIssueCustomField" }, { "value": { "name": "Submitted", "id": "69-0", "$type": "StateBundleElement" }, "name": "State", "id": "92-45", "$type": "StateIssueCustomField" }, { "value": null, "name": "Assignee", "id": "94-6", "$type": "SingleUserIssueCustomField" }, { "value": null, "name": "Subsystem", "id": "92-42", "$type": "SingleOwnedIssueCustomField" }, { "value": [], "name": "Fix versions", "id": "92-46", "$type": "MultiVersionIssueCustomField" }, { "value": [], "name": "Affected versions", "id": "92-47", "$type": "MultiVersionIssueCustomField" }, { "value": null, "name": "Fixed in build", "id": "92-48", "$type": "SingleBuildIssueCustomField" } ], "idReadable": "RP-6", "summary": "Sample: update an issue in specific project", "id": "2-74", "$type": "Issue" }

Read a Specific Issue

Read a specific issue in the project.

Request syntax

GET /api/admin/projects/{projectID}/issues/{issueID}?{fields}

{issueID}

Database ID of the issue.

Request parameters

Parameter

Type

Description

fields

String

A list of Issue attributes that should be returned in the response. If no field is specified,only the entityID is returned

Sample

Sample request

https://example.myjetbrains.com/youtrack/api/admin/projects/0-6/issues/2-74?fields=id,idReadable,summary,description,customFields(id,name,value(id,name))

Sample response body

{ "description": null, "customFields": [ { "value": { "name": "Normal", "id": "67-3", "$type": "EnumBundleElement" }, "name": "Priority", "id": "92-43", "$type": "SingleEnumIssueCustomField" }, { "value": { "name": "Bug", "id": "67-5", "$type": "EnumBundleElement" }, "name": "Type", "id": "92-44", "$type": "SingleEnumIssueCustomField" }, { "value": { "name": "Submitted", "id": "69-0", "$type": "StateBundleElement" }, "name": "State", "id": "92-45", "$type": "StateIssueCustomField" }, { "value": null, "name": "Assignee", "id": "94-6", "$type": "SingleUserIssueCustomField" }, { "value": null, "name": "Subsystem", "id": "92-42", "$type": "SingleOwnedIssueCustomField" }, { "value": [], "name": "Fix versions", "id": "92-46", "$type": "MultiVersionIssueCustomField" }, { "value": [], "name": "Affected versions", "id": "92-47", "$type": "MultiVersionIssueCustomField" }, { "value": null, "name": "Fixed in build", "id": "92-48", "$type": "SingleBuildIssueCustomField" } ], "idReadable": "RP-6", "summary": "Another sample for api/admin/projects/:id/issues endpoint", "id": "2-74", "$type": "Issue" }

Delete a Specific Issue

Delete a specific issue in the project.

Request syntax

DELETE /api/admin/projects/{projectID}/issues/{issueID}

{issueID}

Database ID of the issue.

Request parameters

Parameter

Type

Description

fields

String

A list of Issue attributes that should be returned in the response. If no field is specified,only the entityID is returned

Sample

Sample request

https://example.myjetbrains.com/youtrack/api/admin/projects/0-6/issues/2-72
Last modified: 30 March 2021