- 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)
Query Issue List
POST
https://app.leiga.com/openapi/api/issue/page
Issue Module(issue)
Request
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
summary
string
optional
selectFields
object
optional
dateFields
object
optional
pageNumber
integer <int32>
optional
showedCustomFieldCodes
array [object]
optional
orderBy
string
optional
pageSize
integer <int32>
optional
sort
string
optional
projectId
integer <int64>
required
statusTypes
array [object]
optional
Example
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 POST 'https://app.leiga.com/openapi/api/issue/page' \
--header 'accessToken: ' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
priorityName
string
optional
issueTypeName
string
optional
statusType
integer <int32>
optional
dueDate
string <date>
optional
customFieldData
object
optional
priorityId
integer <int64>
optional
issueTypeVO
object
optional
code
string
optional
name
string
optional
id
integer <int64>
optional
issueTypeId
integer <int64>
optional
assigneeName
string
optional
updateBy
integer <int64>
optional
statusName
string
optional
sprintName
string
optional
id
integer <int64>
optional
summary
string
optional
updateTime
string <date>
optional
assigneeId
integer <int64>
optional
updateByVO
object
optional
profilePicture
string
optional
userName
string
optional
userId
integer <int64>
optional
accountEnabled
string <byte>
optional
<= 4 characters
assigneeVO
object
optional
profilePicture
string
optional
userName
string
optional
userId
integer <int64>
optional
accountEnabled
string <byte>
optional
<= 4 characters
tags
array [object]
optional
sprintId
integer <int64>
optional
createBy
integer <int64>
optional
statusId
integer <int64>
optional
createTime
string <date>
optional
createByVO
object
optional
profilePicture
string
optional
userName
string
optional
userId
integer <int64>
optional
accountEnabled
string <byte>
optional
<= 4 characters
startDate
string <date>
optional
Example
{
"code": "0",
"data": {
"total": 1,
"list": [
{
"priorityName": "xxx",
"issueTypeName": "xxx",
"statusType": 1,
"dueDate": 1646301600000,
"customFieldData": {
"customfield_1": 1
},
"priorityId": 1,
"issueTypeVO": {
"code": "xxx",
"name": "xxx",
"id": 1
},
"issueTypeId": 1,
"assigneeName": "xxx",
"updateBy": 1,
"statusName": "xxx",
"sprintName": "xxx",
"id": 1,
"summary": "xxx",
"updateTime": 1646301600000,
"assigneeId": 1,
"updateByVO": {
"profilePicture": "xxx",
"userName": "xxx",
"userId": 1,
"accountEnabled": 1
},
"assigneeVO": {
"profilePicture": "xxx",
"userName": "xxx",
"userId": 1,
"accountEnabled": 1
},
"tags": [
{
"id": 1,
"tagName": "xxx"
}
],
"sprintId": 1,
"createBy": 1,
"statusId": 1,
"createTime": 1646301600000,
"createByVO": {
"profilePicture": "xxx",
"userName": "xxx",
"userId": 1,
"accountEnabled": 1
},
"startDate": 1646301600000
}
]
}
}
Modified at 2024-06-12 06:46:49