Skip to main content
Version: 2.2.1

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
Requestweb\wwwroot\ws\java\workflow\NewAccessExceptionRequestType.java
Returnweb\wwwroot\ws\java\workflow\NewAccessExceptionResponseType.java

Request:

ID #RequiredDescription
WorkflowIDXInstance ID #
UserIDUser 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>
<urn:UserID>?</urn:UserID>
</urn:AccessException>
</urn:AccessExceptionList>
</urn:newAccessException>
</soapenv:Body>
</soapenv:Envelope>

Return:

ID #Description
StatusMethod execution status. Its value may be:
SUCCESS: Method executed successfully
FAILURE: An error occurred during the method execution
CodeMethod return code
DetailMethod return detail
RecordKeyRecord 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>