Get Trash List(The free version does not support)
POST
/issue/trash/pageRequest
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
summary
string
optional
Issue Summary
pageNumber
integer <int32>
optional
页码,默认第一页
endDeleteTime
string <date>
optional
End Delete Time
pageSize
integer <int32>
optional
每页条数,默认每页10条
deleteTimeOrderBy
string
optional
Delete Time Sort (ASC|DESC)
projectIds
array [object]
optional
Project ID List
startDeleteTime
string <date>
optional
Start Delete Time
deleteBys
array [object]
optional
Delete User ID List
Example
{
"summary": "xxx",
"pageNumber": 1,
"endDeleteTime": 1646301600000,
"pageSize": 10,
"deleteTimeOrderBy": "ASC",
"startDeleteTime": 1646301600000
}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
summary
string
optional
Issue Summary
issueType
object
optional
Issue Type
code
string
optional
Issue Type Code
name
string
optional
Issue Type Name
id
integer <int64>
optional
Issue Type ID
deleteTime
string <date>
optional
Issue Delete Time
deleteBy
object
optional
Delete User
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
id
integer <int64>
optional
Issue ID
projectName
string
optional
Project Name
projectId
integer <int64>
optional
Project ID
Example
{
"code": "0",
"data": {
"total": 1,
"list": [
{
"summary": "xxx",
"issueType": {
"code": "xxx",
"name": "xxx",
"id": 1
},
"deleteTime": 1646301600000,
"deleteBy": {
"profilePicture": "xxx",
"userName": "xxx",
"userId": 1,
"accountEnabled": 1
},
"id": 1,
"projectName": "xxx",
"projectId": 1
}
]
}
}
Last modified: 7 months ago