Get Trash List(The free version does not support)
POST
https://app.leiga.com/openapi/api/issue/trash/page
Issue Module(issue)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.leiga.com/openapi/api/issue/trash/page' \
--header 'accessToken: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"summary": "xxx",
"pageNumber": 1,
"endDeleteTime": 1646301600000,
"pageSize": 10,
"deleteTimeOrderBy": "ASC",
"startDeleteTime": 1646301600000
}'
Response Response 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
}
]
}
}
Request
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
Responses
Modified at 2024-06-12 06:46:49