Because we normalize Netsuite's SOAP API to a RESTful API at Cloud Elements, you need to use specific API calls to get information about custom fields, custom records, custom fields associated with custom records, and custom list items. All references to custom fields and records require the internalId, which you can find using the following endpoints:
- GET /custom-fieldsto retrieve custom fields.
- GET /custom-record-typesto retrieve custom records.
- GET /custom-record-types/{typeId}/custom-record-fieldsto get the custom fields in custom records using the- internalIdfrom- GET /custom-record-types.
- GET /custom-record-types/{typeId}/custom-recordsto get information in the custom fields using the- internalIdfrom- GET /custom-record-types.
- GET /lookups/{fieldName}to retrieve custom list items.
See the Netsuite 2018 Human Capital API documentation for more information about these endpoints.
