Activity #578
User #37 system System notification
11/20/2025, 1:07:44 PM
Overview
notifications / #578
User #37 system System notification
11/20/2025, 1:07:44 PM
User #37 system System notification
11/20/2025, 1:07:44 PM
View recordUser #37 system System notification · 11/20/2025, 1:07:44 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/578" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/578" ); 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/578"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/578"
)
notification = res.json() Response
{
"id": 578,
"userId": 37,
"type": "system",
"title": "System notification",
"body": "Admitto recusandae vis curriculum stultus suspendo.",
"isRead": true,
"link": "https://example.com/system/74VEm74t",
"createdAt": "2025-11-20T13:07:44.115Z"
}