Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
ContactSearch Problem
I'm sure I'm making a bonehead mistake as I think what I'm trying to do is pretty straightforward. All I want to do is search for a contact record by internalId.
Here is my soap request
<?xml version="1.0" encoding="ISO-8859-1"?> <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"> <SOAP-ENV:Header> <ns1:searchPreferences xmlns:ns1="urn:messages_2008_2.platform.webservices.netsuite.com"> <ns2:bodyFieldsOnly xmlns:ns2="urn:messages_2008_2.platform.webservices.netsuite.com">false</ns2:bodyFieldsOnly> <ns3:pageSize xmlns:ns3="urn:messages_2008_2.platform.webservices.netsuite.com">5</ns3:pageSize> </ns1:searchPreferences> </SOAP-ENV:Header> <SOAP-ENV:Body> <nu3018:search xmlns:nu3018="urn:messages_2008_2.platform.webservices.netsuite.com" > <searchRecord xsi:type="nsCommon:ContactSearchBasic" mlns:nsCommon="urn:common_2008_2.platform.webservices.netsuite.com"> <nsCommon:internalId operator="anyOf" xmlns:nsCore="urn:core_2008_2.platform.webservices.netsuite.com"> <nsCore:searchValue>132225</nsCore:searchValue> </nsCommon:internalId> </searchRecord> </nu3018:search> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
0