我正在寻找一种方法,使在SugarCRM
API的CommentLog
条目。我用PHP和rest-php-client做了第一次尝试,但不幸的是没有办法编写或读取CommentLog
。
与邮差我可以验证自己,使用令牌,read/create/update
引线或帐户。不幸的是,例如,我不能在CommentLog
中为一个case做一个条目。
我使用的终端是$url/rest/v10/CommentLog/$CaseId (POST)
或$url/rest/v10/CommentLog (GET)
, booth没有任何成功。
我在/rest/v10/help
上看到一个addComment
函数,但我不知道它是如何工作的。
试试这样做;
把rest/v10/Bugs/01114102-319a-11ec-b680-acde48001122 (<-替换这里的模块和id)
身体:
{
"commentlog_link": {
"create": [{"entry": "The comment goes here",
"_link": "commentlog_link",
"deleted": false}],
"add": [],
"delete": []
}
}
使用Sugar version 11.0.2验证