创建日历条目的各种错误

时间:2018-02-22 17:19:32

标签: clio-api

我很难在特定的日历上创建日历条目。我收到各种错误,通常是404,但也有500错误。我正在关注Clio API v.4文档,我注意到它没有提供指定哪个日历来创建条目的方法,尽管它允许您指定日历所有者,可能是解决方案,除非用户可能有多个日历。

我正在发送邮件给https://app.clio.com/api/v4/calendar_entries.json

这是我在POST中发送的JSON:

{"data":{
"summary":"string",
"matter":{"id":integer},
"start_at":"ISO 8601 Date",
"end_at":"ISO 8601 Date",
"desription":"string"
}}

这将返回(500)“InternalServiceError。”

如果我修改它以指定日历所有者,我会得到(404)“NotFoundError”,如下所示:

{"data":{
"summary":"string",
"matter":{"id":integer},
"start_at":"ISO 8601 Date",
"end_at":"ISO 8601 Date",
"calendar_owner":{"id":integer},
"desription":"string"
}}

我玩过替代配方而没有运气。在"calendar_owner":{"id":x}我已将所有者的用户ID与calendar_id进行了交换,但无济于事。我为calendar_id:integer添加了一个键/值对,没有运气。我还将帖子的URI修改为https://app.clio.com/api/v4/calendar_entries/ x .json,其中x是calendar_id

我不认为我遗漏了文档中的任何内容,但我肯定错过了一些东西。我正在使用的令牌具有适当的范围,适用于在日历上拥有所有者或编辑者权限的用户。

这里有任何修复?

0 个答案:

没有答案