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 Task Detail V2

GET
/issue/v2/get
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.workzappy.com/openapi/api/issue/v2/get?id=1' \
--header 'accessToken: {{accessToken}}' \
--header 'content-Type: application/json'
Response Response Example
{
    "code": "0",
    "data": {
        "issueType": {
            "code": "xxx",
            "name": "xxx",
            "id": 1
        },
        "singleFields": {
            "summary": {
                "value": "xxx"
            },
            "createBy": {
                "id": 1,
                "value": "xxx",
                "url": "https://xxx/1.jpg"
            }
        },
        "createBy": {
            "profilePicture": "xxx",
            "userName": "xxx",
            "userId": 1,
            "accountEnabled": 1
        },
        "multiFields": {
            "field1": [
                {
                    "id": 1,
                    "value": "1"
                },
                {
                    "id": 2,
                    "value": "2"
                }
            ]
        },
        "createTime": 1646301600000,
        "updateBy": {
            "profilePicture": "xxx",
            "userName": "xxx",
            "userId": 1,
            "accountEnabled": 1
        },
        "issueNumber": "xxx",
        "updateTime": 1646301600000,
        "id": 1,
        "fields": {
            "customfield_1": {
                "controlCode": "select",
                "fieldName": "customfield_1",
                "fieldCode": "customfield_1",
                "multipleChoice": true,
                "fieldType": "Number"
            }
        },
        "projectId": 1
    }
}

Request

Query Params
id
integer <int64>
required
Issue ID
Example:
1
Header Params
content-Type
string 
required
Example:
application/json
accessToken
string 
required
Example:
{{accessToken}}

Responses

🟢200OK
application/json
Body
issueType
object 
optional
Issue Type
code
string 
optional
Issue Type Code
name
string 
optional
Issue Type Name
id
integer <int64>
optional
Issue Type ID
singleFields
object 
optional
Single-Valued Results Collection, Fields Defining The Collection Where MultipleChoice Is False
createBy
object 
optional
Creator
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
multiFields
object 
optional
Set Results Collection, Field Defines The Field In The Collection Where MultipleChoice Is True
createTime
string <date>
optional
Creation Time
updateBy
object 
optional
Last Updater
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
issueNumber
string 
optional
issue Number
updateTime
string <date>
optional
Last Update Time
id
integer <int64>
optional
Issue ID
fields
object 
optional
Field Collection
projectId
integer <int64>
optional
Project ID
Modified at 2025-03-21 12:09:41
Previous
Update Task
Next
Get Task Detail
Built with