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 Finished Task List

POST
/issue/page-finished
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.workzappy.com/openapi/api/issue/page-finished' \
--header 'accessToken: {{accessToken}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "pageNumber": 1,
    "before": 1646301600000,
    "sprintIds": [
        1
    ],
    "pageSize": 10,
    "projectIds": [
        1
    ],
    "after": 1646301600000,
    "assigneeIds": [
        1
    ]
}'
Response Response Example
{
    "code": "0",
    "data": {
        "total": 1,
        "list": [
            {
                "priorityName": "xxx",
                "issueTypeName": "xxx",
                "issueNumber": "xxx",
                "dueDate": 1646301600000,
                "priorityId": 1,
                "issueTypeId": 1,
                "assigneeName": "xxx",
                "statusName": "xxx",
                "parentIssueTypeId": 1,
                "sprintName": "xxx",
                "id": 1,
                "parentIssueTypeName": "xxx",
                "summary": "xxx",
                "remainingLabour": 1,
                "finishTime": 1646301600000,
                "estimateManHour": 1,
                "assigneeId": 1,
                "parentId": 1,
                "sprintId": 1,
                "statusId": 1,
                "estimatePoint": 1,
                "actualLabour": 1,
                "projectName": "xxx",
                "projectId": 1,
                "startDate": 1646301600000,
                "parentSummary": "xxx",
                "parentIssueNumber": "xxx"
            }
        ]
    }
}

Request

Header Params
Content-Type
string 
required
Example:
application/json
accessToken
string 
required
Example:
{{accessToken}}
Body Params application/json
pageNumber
integer <int32>
optional
Page Number
before
string <date>
optional
Finished Time Before
sprintIds
array[integer <int64>]
optional
Sprint Id List
pageSize
integer <int32>
optional
Page Size
projectIds
array[integer <int64>]
optional
Project Id List
after
string <date>
optional
Finished Time After
assigneeIds
array[integer <int64>]
optional
Assignee Id List
Examples

Responses

🟢200OK
application/json
Body
priorityName
string 
optional
Priority Name
issueTypeName
string 
optional
Issue Type Name
issueNumber
string 
optional
Issue Number
dueDate
string <date>
optional
Issue Due Date
priorityId
integer <int64>
optional
Priority ID
issueTypeId
integer <int64>
optional
Issue Type ID
assigneeName
string 
optional
Assignee Name
statusName
string 
optional
Issue Status Name
parentIssueTypeId
integer <int64>
optional
Parent Issue Type ID
sprintName
string 
optional
Sprint Name
id
integer <int64>
optional
Issue ID
parentIssueTypeName
string 
optional
Parent Issue Type Name
summary
string 
optional
Issue Summary
remainingLabour
number 
optional
Remaining Labour
finishTime
string <date>
optional
Issue Finish Time
estimateManHour
number 
optional
预估工时
assigneeId
integer <int64>
optional
Assignee ID
parentId
integer <int64>
optional
Parent Issue Id
sprintId
integer <int64>
optional
Sprint ID
statusId
integer <int64>
optional
Issue Status ID
estimatePoint
number 
optional
Point
actualLabour
number 
optional
Actual Labour
projectName
string 
optional
Project Name
projectId
integer <int64>
optional
Project ID
startDate
string <date>
optional
Issue Start Date
parentSummary
string 
optional
Parent Issue Summary
parentIssueNumber
string 
optional
Parent Issue Number
Modified at 2025-03-21 12:12:13
Previous
Restore Task(The free version does not support)
Next
New Phase
Built with