Activity #486
User #15 system System notification
7/15/2025, 10:55:56 AM
Overview
notifications / #486
User #15 system System notification
7/15/2025, 10:55:56 AM
User #15 system System notification
7/15/2025, 10:55:56 AM
View recordUser #15 system System notification · 7/15/2025, 10:55:56 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/486" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/486" ); 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/486"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/486"
)
notification = res.json() Response
{
"id": 486,
"userId": 15,
"type": "system",
"title": "System notification",
"body": "Decimus surculus viriliter quibusdam repellendus.",
"isRead": false,
"link": "https://example.com/system/UritOF8h",
"createdAt": "2025-07-15T10:55:56.404Z"
}