addTaskAttach
This method allows adding:
- Attachments to a Kanban task.
To insert each of these items, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web\wwwroot\ws\java\task\AddTaskAttachRequestType.java |
Return | web\wwwroot\ws\java\task\AddTaskAttachResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
identification | Yes | Activity ID # |
#NMFILE | Yes | Binary content of the file |
flcontent | Yes | Attribute value |
nmattachment | No | Name of the attachment |
dssummary | No | Summary |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:task">
<soapenv:Header/>
<soapenv:Body>
<urn:addTaskAttach>
<!--You may enter the following 5 items in any order-->
<urn:IDENTIFICATION>?</urn:IDENTIFICATION>
<urn:NMFILE>?</urn:NMFILE>
<urn:FLCONTENT>?</urn:FLCONTENT>
<urn:NMATTACHMENT>?</urn:NMATTACHMENT>
<urn:DSSUMMARY>?</urn:DSSUMMARY>
</urn:addTaskAttach>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS: Return regarding the executed item; FAILURE: Error message |