WEBWebUserLoginByRecno_Custom
| Initial Build | 2008.01 |
| xWeb | Web Method |
| Response Type | authentication |
This method can be used to log in a customer based on their customer number.
Important! This method is deprecated. It was primarily used to support Sharepoint integration, which is no longer available for NetForum. The method has not been removed so that existing applications can continue to function in earlier versions of the product, but it should not be used for new applications.
Parameters
The request contains the following parameters:
| Name | Type | Occurs | Description |
|---|---|---|---|
| cst_recno | string | 0..1 |
The customer record number. The record number can be obtained by using the WebUserLogin_Custom method. |
| password | string | 0..1 | The password associated with the specified customer. |
Response
The request returns the log in record for the specified customer.
Sample Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.avectra.com/2005/">
<soapenv:Header>
<ns:AuthorizationToken>
<!--Optional:-->
<ns:Token>2306bae2-4f6f-499c-8b8b-daffb79abb9b</ns:Token>
</ns:AuthorizationToken>
</soapenv:Header>
<soapenv:Body>
<ns:WEBWebUserLoginByRecno_Custom>
<!--Optional:-->
<ns:cst_recno>82896</ns:cst_recno>
<!--Optional:-->
<ns:password>123</ns:password>
</ns:WEBWebUserLoginByRecno_Custom>
</soapenv:Body>
</soapenv:Envelope>
Sample Response
Shortened for brevity.
<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>
<WEBWebUserLoginByRecno_CustomResponse xmlns="http://www.avectra.com/2005/">
<WEBWebUserLoginByRecno_CustomResult>82896</WEBWebUserLoginByRecno_CustomResult>
</WEBWebUserLoginByRecno_CustomResponse>
</soap:Body>
</soap:Envelope>