Skip to main content
Version: 2.2.2

editTask

This method allows editing:

  • Kanban tasks.

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 workspace prefix plus task order.
PRIORITYPriority name.
TITLETitle.
DTDEADLINEDeadline. It must be entered in the YYYY-MM-DD format.
DESCRIPTIONDescription.
IDREPORTERReporter ID.
IDASSIGNEEAssignee ID.
IDCREATORCreator ID.
ATTRIBUTEExample:
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.
STEPStep name.
INITIATIVEInitiatives.
Example:
initiative1;initiative2;initiative3.

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 14 items in any order-->
<urn:Identification>?</urn:Identification>
<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:Step>?</urn:Step>
<urn:Initiative>?</urn:Initiative>
</urn:editTask>
</soapenv:Body>
</soapenv:Envelope>

Return:

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