editAttributeValue
This method edits the value of the attributes of a workflow To use it, it is necessary to follow the standard documented below:
Java class | |
---|---|
Request | web\wwwroot\ws\java\workflow\EditAttributeValueRequestType.java |
Return | web\wwwroot\ws\java\workflow\EditAttributeValueResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
WorkflowID | X | Workflow ID # |
AttributeID | X | Attribute ID # |
AttributeValue | Attribute value. Notes according to the attribute type: â–ª Numeric: numeric digits without thousand separator and with period (.) as decimal separator â–ª Currency: numeric digits without thousand separator and with period (.) as decimal separator â–ª Date: YYYY-MM-DD â–ª Time: HHHH:MM |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:workflow">
<soapenv:Header/>
<soapenv:Body>
<urn:editAttributeValue>
<!--You may enter the following 2 items in any order-->
<urn:WorkflowID>?</urn:WorkflowID>
<!--Optional:-->
<urn:AttributeList>
<!--1 or more repetitions:-->
<urn:Attribute>
<urn:AttributeID>?</urn:AttributeID>
<!--Zero or more repetitions:-->
<urn:AttributeValueList>
<urn:AttributeValue>?</urn:AttributeValue>
</urn:AttributeValueList>
</urn:Attribute>
</urn:AttributeList>
</urn:editAttributeValue>
</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 |