Implementing OwnCloud API v1: Mark items of a folder as read #7

Closed
opened 7 years ago by dustinwilson · 1 comments
Owner

Mark items of a folder as read

  • Method: PUT
  • Route: /folders/{folderId}/read
  • Parameters:
{
    // mark all items read lower than equal that id
    // this is mean to prevent marking items as read which the client/user does not yet know of
    "newestItemId": 10
}
  • Return codes:
  • HTTP 404: If the feed does not exist
  • Returns: nothing
## Mark items of a folder as read * **Method**: PUT * **Route**: /folders/{folderId}/read * **Parameters**: ```js { // mark all items read lower than equal that id // this is mean to prevent marking items as read which the client/user does not yet know of "newestItemId": 10 } ``` * **Return codes**: * **HTTP 404**: If the feed does not exist * **Returns**: nothing
Owner

Unlike pagination, the operator for comparing item IDs is indeed <=.

Unlike pagination, the operator for comparing item IDs is indeed <=.
jking closed this issue 7 years ago
Sign in to join this conversation.
No Milestone
No Assignees
2 Participants
Notifications
Due Date

0000-12-31

Dependencies

This issue currently doesn't have any dependencies.

Loading…
There is no content yet.