如果没有状态字段,我可以通过以下php代码在Netsuite中使用RESTlet创建电话。
$datastring = array(
'recordtype' => 'phonecall',
'gu_action' => 'create',
'title' => 'test',
'status'=>'_completed'
);
当我传递带状态的数据字符串时,我收到错误,如
Array
(
[custom_error] => Array
(
[code] => INVALID_KEY_OR_REF
[message] => Invalid status reference key _completed.
)
)
中提供的RESTlet脚本
答案 0 :(得分:1)
请尝试使用COMPLETE而不是_completed。