editWorkflowData
This method edits the data of a process instance created in SoftExpert Workflow. To use it, it is necessary to follow the standard documented below:
Java class | |
---|---|
Request | web\wwwroot\ws\java\workflow\EditWorkflowDataRequestType.java |
Return | web\wwwroot\ws\java\workflow\EditWorkflowDataResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
WorkflowID | X | Instance ID # |
UserID | User ID | |
UserID (Requester) | Requester user ID | |
CustomerID | Customer ID # | |
Contact | Contact name |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:workflow">
<soapenv:Header/>
<soapenv:Body>
<urn:editWorkflowData>
<!--You may enter the following 3 items in any order-->
<urn:WorkflowID>?</urn:WorkflowID>
<!--Optional:-->
<urn:UserID>?</urn:UserID>
<!--Optional:-->
<urn:Requester>
<urn:User>
<urn:UserID>?</urn:UserID>
</urn:User>
<urn:Customer>
<!--You may enter the following 2 items in any order-->
<urn:CustomerID>?</urn:CustomerID>
<urn:Contact>?</urn:Contact>
</urn:Customer>
</urn:Requester>
</urn:editWorkflowData>
</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 |