Activity #348
User #154 system System notification
6/9/2025, 2:24:10 PM
Overview
notifications / #348
User #154 system System notification
6/9/2025, 2:24:10 PM
User #154 system System notification
6/9/2025, 2:24:10 PM
View recordUser #154 system System notification · 6/9/2025, 2:24:10 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/348" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/348" ); 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/348"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/348"
)
notification = res.json() Response
{
"id": 348,
"userId": 154,
"type": "system",
"title": "System notification",
"body": "Vinum creo spoliatio solum quae bellicus cado.",
"isRead": true,
"link": "https://example.com/system/l0ehkzCT",
"createdAt": "2025-06-09T14:24:10.100Z"
}