newAccessException
This method adds one or more workflow viewing access exceptions. To use it, it is necessary to follow the standard documented below:
Java class | |
---|---|
Request | web\wwwroot\ws\java\workflow\NewAccessExceptionRequestType.java |
Return | web\wwwroot\ws\java\workflow\NewAccessExceptionResponseType.java |
Request:
ID | Required | Description |
---|---|---|
WorkflowID | X | Instance ID # |
UserID | User ID | |
TeamID | Team ID |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:workflow">
<soapenv:Header/>
<soapenv:Body>
<urn:newAccessException>
<!--You may enter the following 2 items in any order-->
<urn:WorkflowID>?</urn:WorkflowID>
<urn:AccessExceptionList>
<!--1 or more repetitions:-->
<urn:AccessException>
<!--You have a CHOICE of the next 2 items at this level-->
<urn:UserID>?</urn:UserID>
<urn:TeamID>?</urn:TeamID>
</urn:AccessException>
</urn:AccessExceptionList>
</urn:newAccessException>
</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 |
RecordKey | Record code added |
Response structure:
<Status>?</Status>
<Code>?</Code>
<Detail>?</Detail>
<RecordDetailList>
<!--1 or more repetitions:-->
<RecordDetail>
<Status>?</Status>
<Code>?</Code>
<Detail>?</Detail>
<RecordKey>?</RecordKey>
</RecordDetail>
</RecordDetailList>