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

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

python - How to remove the Xframe Options header in django? -