如何使用高级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);
}
最佳答案
enter image description here
您需要在标头中传递参数,而不是在变量中传递。请参考该图片