Wes Gamble
03/11/2022, 10:35 PMSELECT *
FROM CustomField
WHERE fieldtype = 'BODY'
AND name = '<Name of custom list>'
but I don’t know which table would actually hold the available values of this custom list.
I can do the 5 or 6 API calls if I have to, but obviously I’d prefer a more efficient one API call (SuiteQL query).tdietrich
03/12/2022, 9:26 AMtdietrich
03/12/2022, 9:26 AMSELECT
Name,
ID
FROM
customlistX
WHERE
IsInactive = 'F'
ORDER BY
Name
Wes Gamble
03/14/2022, 4:20 PM