# Feed API Reference

OpenAPI source: https://api.are.na/v3/openapi.json

## POST /v3/me/notifications/read

- Label: Mark all current user's notifications as read
- Docs: https://www.are.na/developers/explore/feed/post-read
- Markdown: https://www.are.na/developers/explore/feed/post-read.md
- Requires resource id: no
- Response content type: application/json

Clears the authenticated user's unread notification state and returns
the new unread count.

Response schema:
```json
{
  "type": "object",
  "description": "Response to marking all notifications as read.",
  "required": [
    "meta"
  ],
  "properties": {
    "meta": {
      "type": "object",
      "description": "The authenticated user's unread notification state after a mutation.",
      "required": [
        "notifications"
      ],
      "properties": {
        "notifications": {
          "type": "integer",
          "nullable": false,
          "description": "Number of unread notifications remaining.",
          "example": 2
        }
      },
      "refName": "NotificationReadMeta"
    }
  },
  "refName": "NotificationsReadAllResponse"
}
```