PureCloudRESTService.WebServicesImplementation.GetContactByPhoneNumber C# (CSharp) Method

GetContactByPhoneNumber() public method

public GetContactByPhoneNumber ( PhoneNumberRequest req ) : ResponseContact
req inin.Bridge.WebServices.Datadip.Lib.PhoneNumberRequest
return inin.Bridge.WebServices.Datadip.Lib.ResponseContact
        public ResponseContact GetContactByPhoneNumber(PhoneNumberRequest req)
        {
            ResponseContact rc = new ResponseContact();            
            rc.Contact = SQLGetContact(config.getContactByPhoneNumber.Replace("%1", req.PhoneNumber));
            return rc;
        }