Activity #142
User #111 system System notification
3/11/2026, 2:38:05 AM
Overview
notifications / #142
User #111 system System notification
3/11/2026, 2:38:05 AM
User #111 system System notification
3/11/2026, 2:38:05 AM
View recordUser #111 system System notification · 3/11/2026, 2:38:05 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/142" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/142" ); 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/142"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/142"
)
notification = res.json() Response
{
"id": 142,
"userId": 111,
"type": "system",
"title": "System notification",
"body": "Truculenter tricesimus vester sol.",
"isRead": true,
"link": "https://example.com/system/po_7Q5DC",
"createdAt": "2026-03-11T02:38:05.733Z"
}