Activity #73
User #169 system System notification
7/5/2025, 2:09:55 PM
Overview
notifications / #73
User #169 system System notification
7/5/2025, 2:09:55 PM
User #169 system System notification
7/5/2025, 2:09:55 PM
View recordUser #169 system System notification · 7/5/2025, 2:09:55 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/73" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/73" ); 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/73"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/73"
)
notification = res.json() Response
{
"id": 73,
"userId": 169,
"type": "system",
"title": "System notification",
"body": "Verumtamen tui coepi arma nostrum sequi velut.",
"isRead": true,
"link": "https://example.com/system/xepX0lyK",
"createdAt": "2025-07-05T14:09:55.613Z"
}