我正在尝试对netsuite中的脚本执行简单的POST请求, 但我总是得到这个错误。
{
"error":{
"code":"SYNTAX_ERROR",
"message":"SyntaxError: Unsuported number format: ------- (null$lib#3)"
}
}
我的脚本看起来像这样
function putRESTlet(dataIn) {
if ("command" in dataIn) {
return {"result": "command found"}
} else {
return {"result": "wrong command"}
}
}
function getRESTlet() {
return {"result":"Get result"}
}
GET通话工作正常,PUT& POST给了我那个错误
我无法看到为什么它会给我这个错误,因为我不使用任何数字。
答案 0 :(得分:0)
好的,我自己发现了,我试图将Postman的表格数据发送到Netsuite,然后netsuite不喜欢那种格式,现在我发送原始格式并且它有效。