Get Issue Detail V2
GET
/issue/v2/getRequest
Query Params
id
integer <int64>
required
Issue ID
Example:
1
Header Params
content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
issueType
object
optional
Issue Type
code
string
optional
Issue Type Code
name
string
optional
Issue Type Name
id
integer <int64>
optional
Issue Type ID
singleFields
object
optional
Single-Valued Results Collection, Fields Defining The Collection Where MultipleChoice Is False
createBy
object
optional
Creator
profilePicture
string
optional
Profile Picture
userName
string
optional
User Name
userId
integer <int64>
optional
User ID
accountEnabled
string <byte>
optional
Account Enabled (0:No,1:Yes)
<= 4 characters
multiFields
object
optional
Set Results Collection, Field Defines The Field In The Collection Where MultipleChoice Is True
createTime
string <date>
optional
Creation Time
updateBy
object
optional
Last Updater
profilePicture
string
optional
Profile Picture
userName
string
optional
User Name
userId
integer <int64>
optional
User ID
accountEnabled
string <byte>
optional
Account Enabled (0:No,1:Yes)
<= 4 characters
issueNumber
string
optional
issue Number
updateTime
string <date>
optional
Last Update Time
id
integer <int64>
optional
Issue ID
fields
object
optional
Field Collection
projectId
integer <int64>
optional
Project ID
Example
{
"code": "0",
"data": {
"issueType": {
"code": "xxx",
"name": "xxx",
"id": 1
},
"singleFields": {
"summary": {
"value": "xxx"
},
"createBy": {
"id": 1,
"value": "xxx",
"url": "https://xxx/1.jpg"
}
},
"createBy": {
"profilePicture": "xxx",
"userName": "xxx",
"userId": 1,
"accountEnabled": 1
},
"multiFields": {
"field1": [
{
"id": 1,
"value": "1"
},
{
"id": 2,
"value": "2"
}
]
},
"createTime": 1646301600000,
"updateBy": {
"profilePicture": "xxx",
"userName": "xxx",
"userId": 1,
"accountEnabled": 1
},
"issueNumber": "xxx",
"updateTime": 1646301600000,
"id": 1,
"fields": {
"customfield_1": {
"controlCode": "select",
"fieldName": "customfield_1",
"fieldCode": "customfield_1",
"multipleChoice": true,
"fieldType": "Number"
}
},
"projectId": 1
}
}
Last modified: 7 months ago