PureCloudRESTService.WebServicesImplementation.GetAccountByContactId C# (CSharp) Method

GetAccountByContactId() public method

public GetAccountByContactId ( ContactIdRequest cidr ) : ResponseAccount
cidr inin.Bridge.WebServices.Datadip.Lib.ContactIdRequest
return inin.Bridge.WebServices.Datadip.Lib.ResponseAccount
        public ResponseAccount GetAccountByContactId(ContactIdRequest cidr)
        {
            ResponseAccount retVal = new ResponseAccount();
            retVal.Account = SQLGetAccount(config.getAccountByAccountNumber.Replace("%1", cidr.ContactId)); ;
            return retVal;
        }