Skip to main content
Version: 2.2.0

editTask

This method allows editing:

  • Kanban task;

To insert each of these items, it is necessary to follow the standard documented below.

Java class
Requestweb\wwwroot\ws\java\task\EditTaskRequestType.java
Returnweb\wwwroot\ws\java\task\EditTaskResponseType.java

Request:

ID #RequiredDescription
IDENTIFICATIONXTask ID #: composed of the workspace prefix and the task order
WORKSPACEXWorkspace prefix
PRIORITYXPriority name
TITLEXTitle
DTDEADLINEDeadline. It must be entered in the YYYY-MM-DD format.
DESCRIPTIONDescription
IDREPORTERXReporter user ID
IDASSIGNEEAssignee user ID
IDCREATORXCreator user ID
ATTRIBUTEXExample:
identifier_of_attribute1=value_of_attribute1;
identifier_of_attribute2=value_of_attribute2;
identifier_of_attribute3=value_of_attribute3.

Example with a multivalued attribute:
identifier_of_attribute1=value1_of_attribute1,value2_of_attribute1,value3_of_attibute1
Note: For attributes with a numeric value, the decimal place separator must be "." (dot).
For date fields, the value must have the ā€œY-M-Dā€ (Year-Month-Day) format.
SPRINTSprint title
ESTIMATETask estimate
DTSTARTPLANScheduled start date. It must be entered in the YYYY-MM-DD format.

Request structure:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:task">
<soapenv:Header/>
<soapenv:Body>
<urn:editTask>
<!--You may enter the following 13 items in any order-->
<urn:Identification>?</urn:Identification>
<urn:Workspace>?</urn:Workspace>
<urn:Priority>?</urn:Priority>
<urn:Title>?</urn:Title>
<urn:DtDeadline>?</urn:DtDeadline>
<urn:Description>?</urn:Description>
<urn:IdReporter>?</urn:IdReporter>
<urn:IdAssignee>?</urn:IdAssignee>
<urn:IdCreator>?</urn:IdCreator>
<urn:Attribute>?</urn:Attribute>
<urn:Sprint>?</urn:Sprint>
<urn:Estimate>?</urn:Estimate>
<urn:DtStartPlan>?</urn:DtStartPlan>
</urn:editTask>
</soapenv:Body>
</soapenv:Envelope>

Return:

ID #Description
returnSUCCESS: Record successfully created. Task ID.
FAILURE: Message with the error found.