tuli
05/28/2025, 3:54 PMCeligo AI
05/28/2025, 3:54 PMAI generated answer (using internal Slack threads):Based on the conversations, it appears that you can indeed query custom lists using SuiteQL via REST Web services. The general format for such a query would be
SELECT * FROM customlistXXXX
, where XXXX
is the ID of your custom list.
However, please note that you need to have the necessary permissions to access the "CustomList" record. If you don't have the required permissions, you might encounter errors like the one you're experiencing.
Here is an example of how you can fetch a list of all `Custom Item Fields`:
sql
SELECT
CustomField.description,
CustomField.fieldType,
CustomField.internalId,
CustomField.id,
CustomField.name,
CustomField.lastModifiedDate,
CustomField.fieldValueTypeRecord,
CustomField.isMandatory,
CustomField.owner,
CustomField.recordType,
CustomField.scriptid,
CustomField.isShowInList,
CustomField.isStored,
CustomField.fieldValueType,
FROM
CustomField
WHERE
CustomField.fieldType = 'ITEM'
******
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
05/28/2025, 3:54 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.841796577
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.835192561
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.828092873
Celigo AI
05/28/2025, 3:54 PM