David Captur
04/09/2025, 3:04 PMCeligo AI
04/09/2025, 3:05 PMAI generated answer (using internal Slack threads):To retrieve all the values inside a Custom List with a NetSuite SOAP API call, you can use the
getCustomizationId
operation. This operation retrieves metadata for a specified type of customization.
Here is a sample SOAP request:
xml
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:messages_2019_2.platform.webservices.netsuite.com" xmlns:urn1="urn:core_2019_2.platform.webservices.netsuite.com" xmlns:urn2="urn:common_2019_2.platform.webservices.netsuite.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header>
<urn:tokenPassport>
<!--You can insert your token details here-->
</urn:tokenPassport>
</soapenv:Header>
<soapenv:Body>
<urn:getCustomizationId>
<urn:customizationType>
<urn:getCustomizationType>customList</urn:getCustomizationType>
<urn:includeInactives>false</urn:includeInactives>
</urn:customizationType>
</urn:getCustomizationId>
</soapenv:Body>
</soapenv:Envelope>
This will return a list of all active custom lists. You can then filter the results by the script id customlist_go_warranty_extension
to get the specific custom list you are interested in.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
04/09/2025, 3:05 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.859075844
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.849176943
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.838434577
Celigo AI
04/09/2025, 3:05 PMCeligo AI
04/09/2025, 3:32 PM