updateTaskAttrib
This method allows editing:
- Task attribute data
To insert each of these items, it is necessary to follow the standard documented below.
| Java class | |
|---|---|
| Request | web\wwwroot\ws\java\task\UpdateTaskAttribRequestType.java |
| Return | web\wwwroot\ws\java\task\UpdateTaskAttribResponseType.java |
Request:
| ID # | Required | Description |
|---|---|---|
| TaskId | X | Task ID # |
| AttributeId | X | Attribute ID # |
| AttributeValue | X | Attribute value. Patterns for date-type data input: yyyy-mm-dd |
| AttribDescriptionValue | X¹ | Attribute value for memo |
info
- X¹ - Required if the attribute is of the "memo" type.
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:task">
<soapenv:Header/>
<soapenv:Body>
<urn:updateTaskAttrib>
<!--You may enter the following 4 items in any order-->
<urn:TaskId>?</urn:TaskId>
<urn:AttributeId>?</urn:AttributeId>
<urn:AttributeValue>?</urn:AttributeValue>
<urn:AttribDescriptionValue>?</urn:AttribDescriptionValue>
</urn:updateTaskAttrib>
</soapenv:Body>
</soapenv:Envelope>
Return:
| ID # | Description |
|---|---|
| return | SUCCESS:Â Return regarding the executed item FAILURE: Error message. |