TSKTASKINSERT
This method allows inserting 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: createtask |
classpath | String | Yes | Path to the class used in WADLConstant value: tsk_import |
Example request:
Supported attributes:
Request body parameter | Type | Required | Description |
---|---|---|---|
nmprefix | String | Yes | Workspace prefix |
nmtasktype | String | Yes | Task type |
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_Identifier=attribute_value1,attribute_value2,attribute_value3. 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 | |
initiative | String | Initiative ID # separated by; Example: initiative_identifier1;initiative_identifier2;initiative_identifier3. |
{
"nmprefix": "string",
"nmtasktype": "string",
"nmpriority": "string",
"nmtitle": "string",
"dtdeadline": "string",
"description": "string",
"idreporter": "string",
"idassignee": "string",
"idcreator": "string",
"attribute": "string",
"sprint": "string",
"estimate": "string",
"dtstartpan": "string"
"initiative": "string"
}
Example response:
200 OK
{
"success": true,
"total": 1,
"results": [
{
"Result": true,
"Code": 1
}
]
}