我正在努力将数据从多个应用程序项迁移到一个应用程序项目中。我能够移动所有的数据,但我也需要移动评论和文件。
我知道API允许您从应用程序(我正在做的)创建注释,但我希望能够创建注释并传递原始信息(消息、创建者、created_on)。
API文档没有显示创建注释的所有“可能”属性。
谢谢。
发布于 2017-07-13 18:18:15
关于如何创建新注释的所有细节都在这里:https://developers.podio.com/doc/comments/add-comment-to-object-22340
{
"value": The comment to be made,
"external_id": The external id of the comment, if any,
"file_ids": Temporary files that have been uploaded and should be attached to this comment,
[
{file_id},
.... (more file ids)
],
"embed_id": [OPTIONAL] The id of an embedded link that has been created with the Add an mebed operation in the Embed area,
"embed_url": The url to be attached
}
请注意,您不能设置注释的一些属性(如:creator
、created_on
)。
https://stackoverflow.com/questions/45087309
复制相似问题