Overview
POST/content/feed/read-allpersonal

Mark all of the caller’s feed entries as read

Create a record in read-all.

Auth: bearerAuth — calls run as the authenticated user.

Responses
200

Number marked read

  • updatedinteger
Example
{
  "updated": 0
}
401

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
Code examples
cURL
curl -X POST "https://api.agenticdeveloperhub.com/content/feed/read-all" \
  -H "Authorization: Bearer YOUR_TOKEN"
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/content/feed/read-all", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN"
  },
});
const data = await res.json();