Get list of objects and its fields in Netsuite

netsuite

Is there a way to get list of all record types – both standard and custom (employee, lead, customer etc.) and their fields using APIs (SOAP or REST) in Netsuite?

Best Answer

List of all supported records through Suitescript is available at https://system.netsuite.com/help/helpcenter/en_US/RecordsBrowser/2012_2/index.html

List of all supported records through Websrevices is available at http://tellsaqib.github.io/NSPHP-Doc/class_record.html

For getting List of all field available for a particular record type use getAllFields() and getAllLineItemFields(group)

http://dreamxtream.wordpress.com/2012/01/18/getting-all-fields/

For getting list of Custom Field using Webservices use http://tellsaqib.github.io/NSPHP-Doc/class_net_suite_service.html#a628c9eb07887e8a540481850696f7a0e

Related Topic