Is there a way to perform a search with SuiteTalk ...
# suitetalkapi
a
Is there a way to perform a search with SuiteTalk by looking up a saved search ID? This results in the error: org.xml.sax.SAXException: {urn:core_2017_1.platform.webservices.netsuite.com}SearchRecord is an abstract type and cannot be instantiated
Copy code
<soapenv:Envelope xmlns:soapenv="<http://schemas.xmlsoap.org/soap/envelope/>" xmlns:urn="urn:<http://messages_2017_1.platform.webservices.netsuite.com|messages_2017_1.platform.webservices.netsuite.com>" xmlns:urn1="urn:<http://core_2017_1.platform.webservices.netsuite.com|core_2017_1.platform.webservices.netsuite.com>">
   <soapenv:Header>
      ...
   </soapenv:Header>
   <soapenv:Body>
 <search>
 <searchRecord savedSearchId="57">
 </searchRecord>
 </search>
</soapenv:Body>
</soapenv:Envelope>
specifically define its
xsi:type
attribute. In netsuite's example, the
xsi
namespace should be equal to
<http://www.w3.org/2001/XMLSchema-instance>
👍 1
a
Thanks!