c# - How do I find a customer's files using SuiteTalk? -
i attempting create .net program calls netsuite web services return list of files associated customer.
i have set shopperjoin customer i've searched for, web call still returns files in file cabinet.
filesearch file = new filesearch(); customersearchbasic custbasic = new customersearchbasic(); custbasic.entityid= new searchstringfield(); custbasic.entityid.@operator = searchstringfieldoperator.contains ; custbasic.entityid.operatorspecified = true; file.shopperjoin = custbasic; file.basic = new filesearchbasic();custbasic.entityid.searchvalue = "id"; searchresult result = _service.search(file);
i using 2015 suitetalk wsdl https://webservices.na1.netsuite.com/wsdl/v2015_1_0/netsuite.wsdl
have checked if customer id , folder id same? (just hunch)
Comments
Post a Comment