Requisition

Requisition records are used to initiate the purchase process for goods and services needed within your company. For help working with this record in the UI, see Entering a Requisition.

NetSuite exposes the purchase requisition record to REST web services. This record is not a subrecord and does not contain a subrecord.

The following elements are not accessible through REST web services:

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

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

Record ID

The record ID for a purchase requisition REST record is purchaserequisition.

Prerequisites

To use the purchase requisition REST record, you must have the Requisition feature enabled.

Code Samples

The following code sample shows how to create a purchase requisition:

            POST {{REST_SERVICES}}/record/v1/purchaseRequisition Body:
{ "entity": { "id": {{entityId}} }, "item": { "items": [{ "item": { "id": {{item}} }, "rate": 10 }] }
} 

          

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