Task Issue

APIs used for managing task issues

Create new task issue

POST https://your.host.lab/projects/:project_id/tasks/:task_id/issues

{
    "error_code": 0,
    "error_message": "OK",
    "server_time": 1639104302
}

Aggregate number of task issues by status

GET https://your.host.lab/projects/:project_id/tasks/:task_id/issues/agg

{
    "error_code": 0,
    "error_message": "OK",
    "server_time": 1664943078,
    "data": {
        "open": 1,
        "resolved": 0,
        "closed": 1
    }
}

Retrieve task issues

GET https://your.host.lab/projects/:project_id/tasks/:task_id/issues

Path Parameters

Name
Type
Description

_offset

Integer

_limit

Integer

_sort

String

Delete all task issues

DELETE https://your.host.lab/projects/:project_id/tasks/:task_id/issues/all

Delete a single task issue

DELETE https://your.host.lab/projects/:project_id/tasks/:task_id/issues

Modify the content of a task issue (except its status)

PUT https://your.host.lab/projects/:project_id/tasks/:task_id/info

Modify the status of a task issue

PUT https://your.host.lab/projects/:project_id/tasks/:task_id/status

Modify the status of a task issue between OPEN and RESOLVED

PUT https://your.host.lab/projects/:project_id/tasks/:task_id/open-resolve

Last updated