WorkZappy
  1. Task Module(task)
WorkZappy
  • Authorize Module(authorize)
    • Get Permanent Token
    • Get Access Token
    • Refresh Access Token
  • User Module(user)
    • Get project member list (without pagination)
    • Get Project member list (with pagination)
    • Add Project Members
    • Remove Project Members
  • Organization Module(org)
    • Get Organization Users (with pagination)
    • Enable Organization User
    • Disable Organization User
    • Remove Organization User
  • Project Module(project)
    • Get Project Template List
    • Get Project List
    • Get Project Overview Template
    • New Project
    • Update Project
    • Get Project Information By Project Key
    • Get Project Information
    • Change Project Members Role
    • Get Project Roles
    • Get Project Roles
  • Task Module(task)
    • Get Task Type List
      GET
    • Get Task Scheme
      GET
    • Get Task Fields
      GET
    • Get Task Field Detail
      GET
    • Batch Add Task
      POST
    • New Task
      POST
    • Batch Update Task
      PATCH
    • Update Task
      PATCH
    • Get Task Detail V2
      GET
    • Get Task Detail
      GET
    • Get Task Detail By Task Number
      GET
    • Remove Task
      DELETE
    • Batch Remove Task
      DELETE
    • Query Task List
      POST
    • Query Task List V2
      POST
    • Get Project Task Filter Fields
      POST
    • Get Task Select Options
      POST
    • Get Task Relations
      GET
    • Add Task Relation
      POST
    • Remove Task Relation
      POST
    • Batch Add Subtasks
      POST
    • Remove Subtask
      DELETE
    • Update Subtask
      PATCH
    • Get Subtask List
      POST
    • Update Subtask Status
      PATCH
    • Get Subtask Field List
      POST
    • Add Labour Record
      POST
    • Update Labour Record
      PATCH
    • Remove Labour Record
      DELETE
    • Labour Record List
      POST
    • Get Trash Select Option List(The free version does not support)
      POST
    • Get Trash List(The free version does not support)
      POST
    • Restore Task(The free version does not support)
      POST
    • Get Finished Task List
      POST
  • Phase Module(phase)
    • New Phase
    • Update Phase
    • Remove Phase
    • Get Phase Detail
    • Get Project Phase List
  • Workflow Module(workflow)
    • Query Project Workflow List
    • Get State Transition List
  • Tag Module(tag)
    • New Tag
    • Update Tag
    • Remove Tag
    • Get Tag List
  • Webhook Module(webhook)
    • Get Webhook Type List
    • Get Webhook Event List
    • New Webhook
    • Remove Webhook
    • Update Webhook
    • Get Webhook Detail
    • Query Webhook List
  • Comment Module(comment)
    • New Comment
    • Update Comment
    • Remove Comment
    • Get Comment List
    • Update Comment Sticker
    • List Comment Sticker
  • File Module(file)
    • Upload File
    • Download File
    • Remove File
    • Get File List
    • Bind File
  • Personal Message Module(msg)
    • Get Personal Message List
  1. Task Module(task)

Get Trash List(The free version does not support)

POST
/issue/trash/page
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.workzappy.com/openapi/api/issue/trash/page' \
--header 'accessToken: {{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
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
Examples

Responses

🟢200OK
application/json
Body
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
Modified at 2025-03-20 02:41:15
Previous
Get Trash Select Option List(The free version does not support)
Next
Restore Task(The free version does not support)
Built with