Parameters
JSON body
Request body
application/jsonlogIdsnumber[]RequiredSystem log IDs to mark as read for the current member.
Idempotent — inserts into core__system_log_read_state with ON CONFLICT DO NOTHING. Existing rows keep their original read_at; the timestamp is "first time seen", not "last time seen".
JSON body
logIdsnumber[]RequiredSystem log IDs to mark as read for the current member.
1 status code documented
successbooleanRequiredmarkednumberRequiredNumber of log IDs accepted (already-read ones are silently no-op).
{
"success": false,
"marked": 0
}POST /bff/notification/mark-read
curl -X POST "https://api.bizkithub.com/bff/notification/mark-read" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"logIds": [
0
]
}'All BizKitHub public API endpoints require authentication via API key.