- 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
GET
https://app.leiga.com/openapi/api/issue/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/get?id=1' \
--header 'accessToken: ' \
--header 'content-Type: application/json'
Responses
🟢200OK
application/json
Body
data
object
optional
createTime
string <date>
optional
updateTime
string <date>
optional
id
integer <int64>
optional
projectId
integer <int64>
optional
Example
{
"code": "0",
"data": {
"data": {
"issueNumber": 1,
"customfield_25650076": "1",
"description": "xx",
"priorityVO": {
"sequence": 5,
"color": "#fd612c",
"name": "Highest",
"description": "xx",
"id": 1,
"iconUrl": ""
},
"ownerVO": {
"name": "xxx",
"departVOs": [
{
"departId": 1
}
],
"id": 70703981,
"avatar": "xxx",
"userType": 1,
"orgUserId": 1,
"accountEnabled": 1
},
"issueTypeId": 2,
"updateBy": 2,
"labelVO": [
{
"color": "#333333",
"name": "xxx2",
"id": 2,
"labelName": "xxx1"
},
{
"color": "#333333",
"name": "xxx",
"id": 20715114,
"labelName": "xxx3"
},
{
"color": "#333333",
"name": "xxx",
"id": 2,
"labelName": "xxx"
}
],
"id": 2,
"owner": 1,
"summary": "xxx",
"customfield_25650081": "1620000000",
"customfield_25760192": "1",
"follows": [
1
],
"label": [
1,
2,
3
],
"priority": 1,
"updateByVO": {
"name": "xxx",
"id": 1
},
"assigneeVO": {
"name": "xxx",
"id": 15
},
"createBy": 3265191,
"statusVO": {
"stateName": "xxx",
"name": "xxx",
"stateCategory": 2,
"id": 6965107
},
"customfield_25640242": "xxx",
"createByVO": {
"name": "xxx",
"id": 3265191
},
"issueTypeIdVO": {
"selectId": 1,
"code": "story",
"name": "xxx",
"description": "",
"id": 6965292,
"iconUrl": "xxx",
"source": "custom",
"selected": false,
"originName": "xxx"
},
"assignee": 15,
"followsVO": [
{
"name": "xxx",
"id": 1,
"avatar": "xxx"
}
],
"projectId": 1,
"workflowId": 1,
"status": 1
},
"createTime": 1618317796020,
"updateTime": 1618457316414,
"id": 1,
"projectId": 1
}
}
Modified at 2024-06-12 06:46:49