Activity #1156
User #35 system System notification
4/25/2026, 7:01:22 AM
Overview
notifications / #1156
User #35 system System notification
4/25/2026, 7:01:22 AM
User #35 system System notification
4/25/2026, 7:01:22 AM
View recordUser #35 system System notification · 4/25/2026, 7:01:22 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1156" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1156" ); 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/1156"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1156"
)
notification = res.json() Response
{
"id": 1156,
"userId": 35,
"type": "system",
"title": "System notification",
"body": "Arto tendo cubicularis amaritudo spectaculum adeo.",
"isRead": false,
"link": "https://example.com/system/bgVU7MgW",
"createdAt": "2026-04-25T07:01:22.138Z"
}