- Authorize Module(authorize)
- User Module(user)
- Organization Module(org)
- Project Module(project)
- Issue Module(issue)
- Get Issue Type ListGET
- Get Issue SchemeGET
- Get Issue FieldsGET
- Get Issue Field DetailGET
- Batch Add IssuePOST
- New IssuePOST
- Batch Update IssuePATCH
- Update IssuePATCH
- Get Issue Detail V2GET
- Get Issue DetailGET
- Get Issue Detail By Issue NumberGET
- Remove IssueDELETE
- Batch Remove IssueDELETE
- Query Issue ListPOST
- Query Issue List V2POST
- Get Project Issue Filter FieldsPOST
- Get Issue Select OptionsPOST
- Get Issue RelationsGET
- Add Issue RelationPOST
- Remove Issue RelationPOST
- Batch Add SubtasksPOST
- Remove SubtaskDELETE
- Update SubtaskPATCH
- Get Subtask ListPOST
- Update Subtask StatusPATCH
- Get Subtask Field ListPOST
- Add Labour RecordPOST
- Update Labour RecordPATCH
- Remove Labour RecordDELETE
- Labour Record ListPOST
- Get Trash Select Option List(The free version does not support)POST
- Get Trash List(The free version does not support)POST
- Restore Issue(The free version does not support)POST
- Get Finished Issue ListPOST
- Sprint Module(sprint)
- Workflow Module(workflow)
- Tag Module(tag)
- Epic Module(epic)
- Version Module(version)
- Webhook Module(webhook)
- Comment Module(comment)
- File Module(file)
- Personal Message Module(msg)
Get Issue Detail V2
GET
https://app.leiga.com/openapi/api/issue/v2/get
Issue Module(issue)
Request
Query Params
id
integer <int64>
required
Example:
1
Header Params
content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.leiga.com/openapi/api/issue/v2/get?id=1' \
--header 'accessToken: ' \
--header 'content-Type: application/json'
Responses
🟢200OK
application/json
Body
issueType
object
optional
code
string
optional
name
string
optional
id
integer <int64>
optional
singleFields
object
optional
createBy
object
optional
profilePicture
string
optional
userName
string
optional
userId
integer <int64>
optional
accountEnabled
string <byte>
optional
<= 4 characters
multiFields
object
optional
createTime
string <date>
optional
updateBy
object
optional
profilePicture
string
optional
userName
string
optional
userId
integer <int64>
optional
accountEnabled
string <byte>
optional
<= 4 characters
issueNumber
string
optional
updateTime
string <date>
optional
id
integer <int64>
optional
fields
object
optional
projectId
integer <int64>
optional
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
}
}
Modified at 2024-06-12 06:46:49