PureCloudRESTService.WebServicesImplementation.GetAccountByContactId C# (CSharp) 메소드

GetAccountByContactId() 공개 메소드

public GetAccountByContactId ( ContactIdRequest cidr ) : ResponseAccount
cidr inin.Bridge.WebServices.Datadip.Lib.ContactIdRequest
리턴 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;
        }