Activity #1762
User #21 system System notification
9/25/2025, 10:54:51 AM
Overview
notifications / #1762
User #21 system System notification
9/25/2025, 10:54:51 AM
User #21 system System notification
9/25/2025, 10:54:51 AM
View recordUser #21 system System notification · 9/25/2025, 10:54:51 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1762" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1762" ); 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/1762"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1762"
)
notification = res.json() Response
{
"id": 1762,
"userId": 21,
"type": "system",
"title": "System notification",
"body": "Ademptio delinquo vallum amor supplanto nostrum sordeo conservo.",
"isRead": false,
"link": "https://example.com/system/OEfTyMo4",
"createdAt": "2025-09-25T10:54:51.627Z"
}