WEBWebUserLock
| Initial Build | 2008.01 |
| xWeb | Web Method |
| Response Type | boolean |
This method can be used to lock a Web User's account. This may be used for attempting to log in unsuccessfully too many times.
Parameters
The customer's record number— cst_recno (integer).
Response
Boolean—true if successful, else false.
Sample Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.avectra.com/2005/">
<soapenv:Header>
<ns:AuthorizationToken>
<ns:Token>2306bae2-4f6f-499c-8b8b-daffb79abb9b</ns:Token>
</ns:AuthorizationToken>
</soapenv:Header>
<soapenv:Body>
<ns:WEBWebUserLock>
<ns:cst_recno>82896</ns:cst_recno>
</ns:WEBWebUserLock>
</soapenv:Body>
</soapenv:Envelope>
Sample Response
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Header>
<AuthorizationToken xmlns="http://www.avectra.com/2005/">
<Token>2306bae2-4f6f-499c-8b8b-daffb79abb9b</Token>
</AuthorizationToken>
</soap:Header>
<soap:Body>
<WEBWebUserLockResponse xmlns="http://www.avectra.com/2005/">
<WEBWebUserLockResult>true</WEBWebUserLockResult>
</WEBWebUserLockResponse>
</soap:Body>
</soap:Envelope>