如何在Netsuite中使用RESTlet传递枚举值?

时间:2016-04-20 19:29:53

标签: restlet netsuite

如果没有状态字段,我可以通过以下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.
        )

)

https://gist.githubusercontent.com/ganeshprabhus/68a9e5b81e53436bb1d684f857a6c31f/raw/67fe03895f1c31d65c1f283dd51584af45d27c59/NS_Script_2016.2004

中提供的RESTlet脚本

1 个答案:

答案 0 :(得分:1)

请尝试使用COMPLETE而不是_completed。