Hi There,
I noticed that the v.2 endpoint for confluence cloud rest api does not return the modified-date field for resources such as space, page, blogpost, attachment, comment etc in the response body.
Here’s an example of comment response body. While it includes the createdAt field, it’s lacking the modified at field.
{
"results": [
{
"id": "1234567",
"status": "current",
"title": "Re: Test Page",
"pageId": "123456",
"version": {
"number": 1,
"message": "",
"minorEdit": false,
"authorId": "123456789",
"createdAt": "2023-10-05T17:11:08.755Z"
},
"_links": {
"webui": "/spaces/Test/pages/123456/Test+Page?focusedCommentId=123456"
}
}
]
}
Providing this information would help us to paginate better and avoid making extra requests to Confluence Servers.
Extra Request: Allow filtering on resources specific LIST endpoints
Allowing filtering results by time would be a huge plus point. Things like get pages where createdAt or modifiedAt is greater than or less than would immensely help us avoid getting rate limited.
Thanks