Edit tag

This method is a lot more complex than Rename tag and Delete tag. It is used to assign tags to articles. Not only user-created tags, but also system ones. For example it is used to mark articles as read, or to star them.

Request:

POST https://www.inoreader.com/reader/api/0/edit-tag

Request parameters:

Additionally i can be an array of IDs instead of a scalar value, so you can tag multiple items at once

List of system tags:

Examples:

This will mark two articles as read in one request:

https://www.inoreader.com/reader/api/0/edit-tag?a=user/-/state/com.google/read&i=12345678&i=12345679

This will mark two articles as unread and will add test tag to them:

https://www.inoreader.com/reader/api/0/edit-tag?r=user/-/state/com.google/read&a=user/-/label/com.google/test&i=12345678&i=12345679

Response:

OK