Transfer Order

A transfer order transaction records the change in location of inventory items within the same subsidiary. It also records the quantity and shipping details.

This transaction is available when the Locations feature and the Multi-Location Inventory (MLI) feature are enabled. A transfer order can initialize item fulfillment and item receipt transactions. It has one subrecord: inventory detail. See Item Fulfillment and Item Receipt. For more information about transfer orders, see Inventory Transfer Orders.

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

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

Record IDs

The record ID for a transfer order REST record is transferorder.

The record ID for an inventory detail REST subrecord is inventorydetail.

Prerequisites

There are no prerequisites for using the record in REST.

Code Samples

The following sample shows you how to update a transfer order:

            PATCH {{REST_SERVICES}}/record/v1/transferorder/118 { "memo": "test", "currency": { "id": "1", "refName": "British pound" }, "incoTerm": { "id": "1", "refName": "DAP" }, "item": { "items": [ { "amount": 0.0, "inventoryDetail": { "inventoryAssignment": { "items": [], "totalResults": 0 } }, "isClosed": true, "item": { "id": "20" }, "itemType": { "id": "InvtPart" }, "line": 1, "quantity": 10.0, "rate": 0.0 }, { "amount": 0.0, "inventoryDetail": { "inventoryAssignment": { "items": [], "totalResults": 0 } }, "isClosed": true, "item": { "id": "21" }, "itemType": { "id": "InvtPart" }, "line": 4, "quantity": 5.0, "rate": 0.0 } ] }, "location": { "id": "1", "refName": "WMS Warehouse 1" }, "orderStatus": { "id": "B", "refName": "B" }, "subsidiary": { "id": "1", "refName": "WMS" }, "transferlocation": { "id": "2", "refName": "WMS Warehouse 2" }, "status": { "id": "Closed", "refName": "Closed" } } 

          

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