Activity #1945
User #233 system System notification
7/18/2025, 1:02:33 PM
Overview
notifications / #1945
User #233 system System notification
7/18/2025, 1:02:33 PM
User #233 system System notification
7/18/2025, 1:02:33 PM
View recordUser #233 system System notification · 7/18/2025, 1:02:33 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1945" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1945" ); 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/1945"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1945"
)
notification = res.json() Response
{
"id": 1945,
"userId": 233,
"type": "system",
"title": "System notification",
"body": "Pauper uter voluptatibus tamquam virga sui aggredior aut viduo.",
"isRead": true,
"link": "https://example.com/system/XbTRyScp",
"createdAt": "2025-07-18T13:02:33.251Z"
}