Activity #1361
User #163 system System notification
6/12/2025, 6:07:02 PM
Overview
notifications / #1361
User #163 system System notification
6/12/2025, 6:07:02 PM
User #163 system System notification
6/12/2025, 6:07:02 PM
View recordUser #163 system System notification · 6/12/2025, 6:07:02 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1361" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1361" ); 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/1361"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1361"
)
notification = res.json() Response
{
"id": 1361,
"userId": 163,
"type": "system",
"title": "System notification",
"body": "Virtus cupiditate laboriosam adsum advoco ambulo alter cattus textor.",
"isRead": false,
"link": "https://example.com/system/CuszzTiX",
"createdAt": "2025-06-12T18:07:02.383Z"
}