Get a issue details
GET/project/issues/:issueID
Get a issue details.
History
Version | Changes |
---|---|
v3.14.117, v3.15.26 | Added in: v3.14.117, v3.15.26 |
v6.30.0, v6.18.14 | Add fields (e.g., description) and modify existing fields in the Responses Schema Modifications: Renamed the title field to name under parent Renamed the title field to name under subIssues Additions: solution, publishProgress, publishDate, serverUpdateStamp, timeProgress, estimateStoryPoint, publishVersion, watchers, planStartDate, planEndDate, solver, descriptionText, description, defectType, isOnlineDefect, products, productModules, projectModules, epic, severityLevel, estimateVariance, totalTimeProgress, totalEstimateVariance, progress |
Request
Path Parameters
The id of the issue.
Query Parameters
The team ID
Responses
- 200
- 401
- 403
- 404
- 500
Request is successful.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Array [
]
Array [
- 1: Single Select
- 2: Text
- 3: Integer
- 4: Float
- 5: Date
- 6: Time
- 16: Multiple Select
- 19: Boolean
- MOD1
- MOD2
- MOD3
- MOD4
Array [
]
]
Array [
]
Array [
]
Array [
]
Array [
]
Array [
]
assignee
object
ID of the assignee.
Name of the assignee.
CreateTime of the issue.
Issue due date.
Time estimated,unit is hour.
issueType
object
ID of the issue type.
Name of the issue type.
Title of the issue.
Number of the issue.
creator
object
ID of the creator.
Name of the creator.
parent
object
Parent issue ID.
Parent issue title.
priority
object
ID of the priority.
Name of the priority.
project
object
Project ID of the issue.
Project name of the issue.
Time remaining,unit is hour.
sprint
object
ID of the sprint.
Name of the sprint.
status
object
ID of the status.
Name of the status.
Category of the status.
subIssueType
object
ID of the sub issue type.
Name of the sub issue type.
Total sub issue.
Total completed sub issue.
subIssues
object[]
ID of the sub issue.
Name of the sub issue.
Total time estimated,unit is hour.
Time spent,unit is hour.
Total time remaining,unit is hour.
ID of the issue.
attachments
object[]
ID of the attachment.
Name of the attachment.
Create time of the attachment.
fieldValues
object[]
Only includes custom attributes added to the detail form and a subset of system attributes
Field identifier
Field type (common types as examples):
value
object
Field value. The data format varies according to the field type. Due to extensible types, please refer to the response data for specific formats
oneOf
string
integer
boolean
solution
object
ID of the solution
Value of the solution
publish progress
publish date
update timestamp
time progress
story point
publishVersion
object[]
ID of the publish version
Name of the publish version
watchers
object[]
ID of watchers
Name of watchers
Plan start date
Plan end date
solver
object
ID of the solver
Name of the solver
Description Text
Description Rich-Text
defectType
object
ID of the defect type
value of the defect type
isOnlineDefect
object
ID of the is-online defect
value of the is-online defect
products
object[]
ID of products
Name of products
productModules
object[]
ID of product modules
Name of product modules
projectModules
object[]
ID of project modules
Name of project modules
epic
object
ID of the epic
Name of the epic
severityLevel
object
ID of the severity level
Value of the severity level
Estimated variance
Total time progress
Total estimated variance
Progress
{
"assignee": {
"id": "string",
"name": "string"
},
"createTime": 0,
"dueDate": "string",
"timeEstimatedHour": 0,
"issueType": {
"id": "string",
"name": "string"
},
"title": "string",
"number": 0,
"creator": {
"id": "string",
"name": "string"
},
"parent": {
"id": "string",
"name": "string"
},
"priority": {
"id": "string",
"name": "string"
},
"project": {
"id": "string",
"name": "string"
},
"timeRemainingHour": 0,
"sprint": {
"id": "string",
"name": "string"
},
"status": {
"id": "string",
"name": "string",
"category": "string"
},
"subIssueType": {
"id": "string",
"name": "string"
},
"subIssueCount": 0,
"subIssueDoneCount": 0,
"subIssues": [
{
"id": "string",
"name": "string"
}
],
"totalTimeEstimatedHour": 0,
"timeSpentHour": 0,
"totalTimeRemainingHour": 0,
"id": "string",
"attachments": [
{
"id": "string",
"name": "string",
"createTime": 0
}
],
"fieldValues": [
{
"fieldID": "string",
"type": 0,
"value": "string"
}
],
"solution": {
"id": "string",
"value": "string"
},
"publishProgress": 0,
"publishDate": "string",
"serverUpdateStamp": 0,
"timeProgress": 0,
"estimateStoryPoint": 0,
"publishVersion": [
{
"id": "string",
"name": "string"
}
],
"watchers": [
{
"id": "string",
"name": "string"
}
],
"planStartDate": "string",
"planEndDate": "string",
"solver": {
"id": "string",
"name": "string"
},
"descriptionText": "string",
"description": "string",
"defectType": {
"id": "string",
"value": "string"
},
"isOnlineDefect": {
"id": "string",
"value": "string"
},
"products": [
{
"id": "string",
"name": "string"
}
],
"productModules": [
{
"id": "string",
"name": "string"
}
],
"projectModules": [
{
"id": "string",
"name": "string"
}
],
"epic": {
"id": "string",
"name": "string"
},
"severityLevel": {
"id": "string",
"value": "string"
},
"estimateVariance": 0,
"totalTimeProgress": 0,
"totalEstimateVariance": 0,
"progress": 0
}
Returned if the authentication credentials are incorrect or missing.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Unauthorized",
"errorMsg": "Access token is invalid"
}
Returns if the scope check fails.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Forbidden",
"errorMsg": "Scope is invalid"
}
Returned if the resource object was not found.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "NotFound",
"errorMsg": "Not Found"
}
Internal Server Error.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Internal Server Error",
"errorMsg": "Internal Server Error"
}