Activity #565
User #141 system System notification
6/24/2025, 3:22:54 AM
Overview
notifications / #565
User #141 system System notification
6/24/2025, 3:22:54 AM
User #141 system System notification
6/24/2025, 3:22:54 AM
View recordUser #141 system System notification · 6/24/2025, 3:22:54 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/565" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/565" ); 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/565"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/565"
)
notification = res.json() Response
{
"id": 565,
"userId": 141,
"type": "system",
"title": "System notification",
"body": "Sunt soluta supra atrox cilicium facere viscus concedo tui.",
"isRead": true,
"link": null,
"createdAt": "2025-06-24T03:22:54.368Z"
}