Activity #515
User #136 system System notification
6/3/2025, 6:59:19 PM
Overview
notifications / #515
User #136 system System notification
6/3/2025, 6:59:19 PM
User #136 system System notification
6/3/2025, 6:59:19 PM
View recordUser #136 system System notification · 6/3/2025, 6:59:19 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/515" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/515" ); 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/515"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/515"
)
notification = res.json() Response
{
"id": 515,
"userId": 136,
"type": "system",
"title": "System notification",
"body": "Argentum decens deficio.",
"isRead": true,
"link": "https://example.com/system/zP79-CfB",
"createdAt": "2025-06-03T18:59:19.207Z"
}