2
如何使用高級REST客戶端傳遞參數NetSuite RESTLet。我不能獲取參數值。如何使用高級REST客戶端傳遞參數NetSuite RESTLet
function getRecord(datain)
{
nlapiLogExecution('DEBUG','recordtype='+datain.recordtype);
nlapiLogExecution('DEBUG','id='+datain.id);
var sugu = nlapiLoadRecord(datain.recordtype, datain.id);
return JSON.stringify(sugu);
}