Activity #274
User #21 system System notification
8/23/2025, 2:38:46 PM
Overview
notifications / #274
User #21 system System notification
8/23/2025, 2:38:46 PM
User #21 system System notification
8/23/2025, 2:38:46 PM
View recordUser #21 system System notification · 8/23/2025, 2:38:46 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/274" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/274" ); 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/274"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/274"
)
notification = res.json() Response
{
"id": 274,
"userId": 21,
"type": "system",
"title": "System notification",
"body": "Vestrum absorbeo cibo dapifer valetudo somnus trado.",
"isRead": false,
"link": null,
"createdAt": "2025-08-23T14:38:46.240Z"
}