Activity #716
User #97 system System notification
3/6/2026, 5:14:23 PM
Overview
notifications / #716
User #97 system System notification
3/6/2026, 5:14:23 PM
User #97 system System notification
3/6/2026, 5:14:23 PM
View recordUser #97 system System notification · 3/6/2026, 5:14:23 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/716" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/716" ); 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/716"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/716"
)
notification = res.json() Response
{
"id": 716,
"userId": 97,
"type": "system",
"title": "System notification",
"body": "Voluptatem eius animus acies arbustum patria altus decipio tres tenetur.",
"isRead": true,
"link": "https://example.com/system/7mUOQblu",
"createdAt": "2026-03-06T17:14:23.660Z"
}