David Captur
04/09/2025, 2:53 PMCeligo AI
04/09/2025, 2:54 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 an example of how you can use this operation to retrieve a custom list:
xml
<getCustomizationId xmlns="urn:messages_2017_1.platform.webservices.netsuite.com">
<customizationType xmlns="urn:core_2017_1.platform.webservices.netsuite.com">
<getCustomizationType>customList</getCustomizationType>
</customizationType>
<includeInactives>false</includeInactives>
</getCustomizationId>
In the getCustomizationType
field, you specify the type of customization you want to retrieve. In this case, you want to retrieve a custom list, so you specify customList
.
The includeInactives
field specifies whether to include inactive customizations in the results. If you set this field to false
, the operation only retrieves active customizations.
After you send this request, the NetSuite SOAP API returns a list of all active custom lists in the account. You can then search this list for the custom list with the script ID customlist_go_warranty_extension
.
******
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, 2:54 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.862409353
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.851248384
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.832043707
Celigo AI
04/09/2025, 2:54 PMDavid Captur
04/09/2025, 2:57 PMCeligo AI
04/09/2025, 2:58 PMDavid Captur
04/09/2025, 3:00 PM