Item Revision

An item revision record exposes an item revision item to REST web services.

This record:

The REST API Browser includes information about the field names and field types of the item revision record, and about the HTTP methods, request parameters, and operations available to this record. For details, see the REST API Browser’s itemRevision reference page.

For information about using the REST API Browser, see The REST API Browser.

Record IDs

The record ID for an item revision REST record is ItemRevision.

Code Samples

The following samples show common use cases for item revisions. The example ID is 4.

Creating an Item Revision Using a POST Request

              POST https://demo123.suitetalk.api.snap.netsuite.com/services/rest/record/v1/itemRevision
{ "item": {"id":410}, "name": "REV_2022", "effectiveDate": "2022-01-01", "memo": "memo"
} 

            

Retrieving an Item Revision Using a GET Request

              GET https://demo123.suitetalk.api.snap.netsuite.com/services/rest/record/v1/itemRevision/4 

            

Updating an Item Revision Using a PATCH Request

              PATCH https://demo123.suitetalk.api.snap.netsuite.com/services/rest/record/v1/itemRevision/4
{ "memo": "new memo"
} 

            

Related Topics

REST Web Services Supported Records
SuiteTalk REST Web Services Overview and Setup
Working with Records
NetSuite Record Structure
The REST API Browser

General Notices