TSKTASKEDIT
This method allows editing a Kanban task through a REST web service.
POST /apigateway/se/generic/gn_webservice/gn_webservice_execute.php
Query parameters:
Query parameters | Type | Required | Description |
---|---|---|---|
cdprod | Numeric | Yes | Product codeConstant Value: 275 |
classname | String | Yes | Class name used in WADLConstant value: edittask |
classpath | String | Yes | Path to the class used in WADLConstant value: tsk_import |
Example request:
Supported attributes:
Request body parameter | Type | Required | Description |
---|---|---|---|
actidentification | String | Yes | Activity ID # |
nmprefix | String | Yes | Workspace prefix |
nmpriority | String | Yes | Priority name |
nmtitle | String | Yes | Title |
dtdeadline | String | Deadline. It must be entered in the YYYY-MM-DD format. | |
description | String | Description | |
idreporter | String | Yes | Reporter ID |
idassignee | String | Assignee ID | |
idcreator | String | Yes | Creator ID |
attribute | String | Attributes. Example: Attribute*ID*#=value1_of_attribute,value2_of_attribute , value3_of_attribute .Note: For attributes with a numeric value, the decimal place separator must be . (dot). | |
sprint | String | Sprint title | |
estimate | String | Estimated | |
dtstartpan | String | Scheduled start date. It must be entered in the YYYY-MM-DD format | |
nmstep | String | Step | |
initiative | String | Initiative ID # separated by; Example: initiative_identifier1 ; initiative_identifier2 ; initiative_identifier3 . |
{
"actidentification": "string",
"nmprefix": "string",
"nmpriority": "string",
"nmtitle": "string",
"dtdeadline": "string",
"description": "string",
"idreporter": "string",
"idassignee": "string",
"idcreator": "string",
"attribute": "string",
"sprint": "string",
"estimate": "string",
"dtstartpan": "string",
"nmstep": "string",
"initiative": "string"
}
Example response:
200 OK
{
"success": true,
"total": 1,
"results": [
{
"Result": true,
"Code": 1
}
]
}