Activity #1037
User #135 system System notification
4/5/2026, 2:23:57 AM
Overview
notifications / #1037
User #135 system System notification
4/5/2026, 2:23:57 AM
User #135 system System notification
4/5/2026, 2:23:57 AM
View recordUser #135 system System notification · 4/5/2026, 2:23:57 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1037" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1037" ); 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/1037"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1037"
)
notification = res.json() Response
{
"id": 1037,
"userId": 135,
"type": "system",
"title": "System notification",
"body": "Cauda uredo patrocinor tempus vitiosus villa provident aperiam vulgo.",
"isRead": false,
"link": "https://example.com/system/4imrBJo2",
"createdAt": "2026-04-05T02:23:57.861Z"
}