Get an inventory transfer detail using REST

Endpoint: https://{accountId}.suitetalk.api.netsuite.com/services/rest/record/v1/inventoryTransfer/{recordId} Add expandSubResources=true to the parameter to fetch the line details The endpoint becomes: https://{accountId}.suitetalk.api.netsuite.com/services/rest/record/v1/inventoryTransfer/{recordId}?expandSubResources=true

REST endpoint and payload for creating Inventory transfer

Endpoint: https://{accountid}.suitetalk.api.netsuite.com/services/rest/record/v1/inventoryTransfer Payload {   “subsidiary”: {     “id”: “7”// internal id of subsidiary   },   “location”: {    “id”: “380” // internal id of the location   },   “transferLocation”: {     “id”: “377” // internal id of the location   },   “inventory”: {     “items”: [    … Continue reading REST endpoint and payload for creating Inventory transfer

Email notification on Stock Movement

CSV import for Bin Owner field Updation on Bin records in production. A User event script after submit is deployed on the creation of Bin Transfer and Inventory Transfer record.  The script will send an email to all the Bin Owners of the From Bin to notify them that the items are transferred to another… Continue reading Email notification on Stock Movement