Activity #1514
User #83 system System notification
5/23/2025, 8:17:30 AM
Overview
notifications / #1514
User #83 system System notification
5/23/2025, 8:17:30 AM
User #83 system System notification
5/23/2025, 8:17:30 AM
View recordUser #83 system System notification · 5/23/2025, 8:17:30 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1514" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1514" ); 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/1514"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1514"
)
notification = res.json() Response
{
"id": 1514,
"userId": 83,
"type": "system",
"title": "System notification",
"body": "Aut creber verumtamen antea officia adimpleo.",
"isRead": false,
"link": "https://example.com/system/M9xkcB8U",
"createdAt": "2025-05-23T08:17:30.209Z"
}