Retired timestamp change feed
Deprecated
GET
/notes/changes
const url = 'https://api.engram.page/notes/changes';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.engram.page/notes/changes \ --header 'Authorization: Bearer <token>'Retired. The timestamp-based change feed has been removed; this endpoint always returns 410 Gone. Clients sync via the CRDT sync socket and GET /sync/manifest (current plugin versions already do).
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Feed retired