Activity #84
User #70 system System notification
6/29/2025, 11:23:58 AM
Overview
notifications / #84
User #70 system System notification
6/29/2025, 11:23:58 AM
User #70 system System notification
6/29/2025, 11:23:58 AM
View recordUser #70 system System notification · 6/29/2025, 11:23:58 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/84" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/84" ); 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/84"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/84"
)
notification = res.json() Response
{
"id": 84,
"userId": 70,
"type": "system",
"title": "System notification",
"body": "Deputo cupio tredecim cui tenus tersus curvo.",
"isRead": false,
"link": "https://example.com/system/sIi_ul4P",
"createdAt": "2025-06-29T11:23:58.685Z"
}