_login
(API version 1.0, API version 2.0)int _login ( string kodf , string username , string pass )
Description
Function for verifying login credentials.
Parameters
- string kodf
- Company login code
- string username
- Login username
- string pass
- Login password
Return value
int
Examples
API version 1.0
$client = new SoapClient(NULL, , array( 'location' => 'http://api.webdispecink.cz/code/webdisser.php', 'uri' => 'urn://api.webdispecink.cz/webdisser_01', 'soap_version' => SOAP_1_2, 'trace' => 1, )); $return = $client->__soapCall('_login', array($kodf, $username, $pass));
API version 2.0
$client = new SoapClient('https://api.webdispecink.cz/code/WebDispecinkServiceNet.php?wsdl'); $return = $client->_login($kodf, $username, $pass);
Test
To test the function, enter parameters in form below and press Try it out button.