Activity #477
User #219 system System notification
7/23/2025, 4:19:37 AM
Overview
notifications / #477
User #219 system System notification
7/23/2025, 4:19:37 AM
User #219 system System notification
7/23/2025, 4:19:37 AM
View recordUser #219 system System notification · 7/23/2025, 4:19:37 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/477" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/477" ); 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/477"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/477"
)
notification = res.json() Response
{
"id": 477,
"userId": 219,
"type": "system",
"title": "System notification",
"body": "Patrocinor bibo cattus.",
"isRead": false,
"link": "https://example.com/system/wJ5I4idp",
"createdAt": "2025-07-23T04:19:37.546Z"
}