WSDL/**
* Get your owned service id for keyword
*
* If service not found - ERROR_INVALID_SERVICE will be thrown
* If service does not belong to the caller - ERROR_PERMISSION_DENIED
* will be thrown
*
* @param string $country Service country code (LT, LV etc.)
* @param string $number Service short number (1679, 1656, 1654, etc.)
* @param string $keyword Service keyword on given number
*
* Usage example:
*
$client = new Zend_Soap_Client('http://partners.vero.lt/MBS/services-server?wsdl');
$client->setHttpLogin('partner_username');
$client->setHttpPassword('partner_password');
$params = array(
'country' => 'LT',
'number' => '1679',
'keyword' => 'HORO',
);
try{
$result = $client->__call('keywordGetServiceId', $params);
}catch(Exception $e){
echo "Code: {$e->getCode()} Message: {$e->getMessage()}";
}
var_export($result);
*
* @return int
*/
Test method keywordGetServiceId()