Activity #395
User #128 system System notification
5/9/2026, 4:10:52 AM
Overview
notifications / #395
User #128 system System notification
5/9/2026, 4:10:52 AM
User #128 system System notification
5/9/2026, 4:10:52 AM
View recordUser #128 system System notification · 5/9/2026, 4:10:52 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/395" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/395" ); const notification = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/notifications.d.ts https://example-data.com/types/notifications.d.ts
import type { Notification } from "./types/notifications";
const res = await fetch(
"https://example-data.com/api/v1/notifications/395"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/395"
)
notification = res.json() Response
{
"id": 395,
"userId": 128,
"type": "system",
"title": "System notification",
"body": "Custodia socius pecto depraedor.",
"isRead": false,
"link": "https://example.com/system/3xznGyvE",
"createdAt": "2026-05-09T04:10:52.312Z"
}