WorkZappy
  1. File Module(file)
WorkZappy
  • Authorize Module(authorize)
    • Get Permanent Token
      POST
    • Get Access Token
      POST
    • Refresh Access Token
      POST
  • User Module(user)
    • Get project member list (without pagination)
      GET
    • Get Project member list (with pagination)
      GET
    • Add Project Members
      POST
    • Remove Project Members
      DELETE
  • Organization Module(org)
    • Get Organization Users (with pagination)
      GET
    • Enable Organization User
      POST
    • Disable Organization User
      POST
    • Remove Organization User
      DELETE
  • Project Module(project)
    • Get Project Template List
      GET
    • Get Project List
      GET
    • Get Project Overview Template
      GET
    • New Project
      POST
    • Update Project
      PATCH
    • Get Project Information By Project Key
      GET
    • Get Project Information
      GET
    • Change Project Members Role
      POST
    • Get Project Roles
      GET
    • Get Project Roles
      POST
  • Task Module(task)
    • Get Task Type List
    • Get Task Scheme
    • Get Task Fields
    • Get Task Field Detail
    • Batch Add Task
    • New Task
    • Batch Update Task
    • Update Task
    • Get Task Detail V2
    • Get Task Detail
    • Get Task Detail By Task Number
    • Remove Task
    • Batch Remove Task
    • Query Task List
    • Query Task List V2
    • Get Project Task Filter Fields
    • Get Task Select Options
    • Get Task Relations
    • Add Task Relation
    • Remove Task Relation
    • Batch Add Subtasks
    • Remove Subtask
    • Update Subtask
    • Get Subtask List
    • Update Subtask Status
    • Get Subtask Field List
    • Add Labour Record
    • Update Labour Record
    • Remove Labour Record
    • Labour Record List
    • Get Trash Select Option List(The free version does not support)
    • Get Trash List(The free version does not support)
    • Restore Task(The free version does not support)
    • Get Finished Task List
  • 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
      POST
    • Download File
      POST
    • Remove File
      DELETE
    • Get File List
      POST
    • Bind File
      POST
  • Personal Message Module(msg)
    • Get Personal Message List
  1. File Module(file)

Get File List

POST
/file/list
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.workzappy.com/openapi/api/file/list' \
--header 'accessToken: {{accessToken}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "linkEntity": "attachment",
    "linkId": 1,
    "linkModule": "issue"
}'
Response Response Example
{
    "code": "0",
    "data": [
        {
            "uploadUserId": 1,
            "fileName": "xxx",
            "fileSize": 1,
            "fileSuffix": ".webp",
            "uploadUserName": "xxx",
            "fileKey": "xxx",
            "originalUrl": "https://xxx.net",
            "uploadTime": 1646301600000,
            "fileDownloadPath": "https://xxx.net",
            "fileType": "document"
        }
    ]
}

Request

Header Params
Content-Type
string 
required
Example:
application/json
accessToken
string 
required
Example:
{{accessToken}}
Body Params application/json
linkEntity
string 
required
Link Entity (.eg. comment)
linkId
integer <int64>
required
Link ID
linkModule
string 
required
Comment Module (.eg. issue)
Examples

Responses

🟢200OK
application/json
Body
uploadUserId
integer <int64>
optional
Upload User ID
fileName
string 
optional
File Name
fileSize
integer <int64>
optional
File Size (bytes)
fileSuffix
string 
optional
File Suffix
uploadUserName
string 
optional
Upload User Name
fileKey
string 
optional
File Key
originalUrl
string 
optional
Original Url
uploadTime
string <date>
optional
Upload Time
fileDownloadPath
string 
optional
File Download Path
fileType
string 
optional
File Type
Modified at 2025-03-20 02:41:15
Previous
Remove File
Next
Bind File
Built with