newComment
This method allows adding a comment to an instance activity. To edit it, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web/wwwroot/ws/java/workflow/NewCommentRequestType.java |
Return | web/wwwroot/ws/java/workflow/NewCommentResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
WorkflowID | X | Instance ID # |
ActivityID | X | Activity ID # |
Text | X | Comment |
Private | Do not display for requester (1 = do not display) | |
UserID | User ID |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:workflow">
<soapenv:Header/>
<soapenv:Body>
<urn:newComment>
<!--You may enter the following 5 items in any order-->
<urn:WorkflowID>?</urn:WorkflowID>
<urn:ActivityID>?</urn:ActivityID>
<urn:Text>?</urn:Text>
<urn:Private>?</urn:Private>
<!--Optional:-->
<urn:UserID>?</urn:UserID>
</urn:newComment>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
Status | Method execution status. Its value may be: SUCCESS: Method executed successfully FAILURE: An error occurred during the method execution |
Code | Method return code |
Detail | Method return detail |