ActiveCollab 的 400 错误请求 REST-API

400 Bad Request by ActiveCollab REST-API

我正在尝试使用 Postman 对 ActiveCollab REST-API 执行 GET-request。我想按项目的日期筛选 time-records。我将我的 Access-Token 添加到 header 和我的时间段 JSON 格式,其中我希望将结果添加到 body 中。 结果,我收到“400 Bad Request”。

URL:

https://*/projects/29/time-records/filtered-by-date

Body (JSON):

{
    "from": "2021-08-01",
    "to": "2021-08-31"
}

我可以用我的 access-token 执行其他请求,并且我在文档中的示例模式中添加了我的参数 (https://developers.activecollab.com/api-documentation/v1/projects/elements/time-records/filtered-by-date.html).

问题似乎与 Postman 无关,因为我也尝试使用其他应用程序。

您准备的参数应通过查询字符串发送,而不是作为请求正文:

https://*/projects/29/time-records/filtered-by-date?from=YYYY-MM-DD&to=YYYY-MM-DD

当省略这些参数时,系统returns 400 Bad Request 响应。