Activity #100
User #229 system System notification
11/26/2025, 6:18:22 PM
Overview
notifications / #100
User #229 system System notification
11/26/2025, 6:18:22 PM
User #229 system System notification
11/26/2025, 6:18:22 PM
View recordUser #229 system System notification · 11/26/2025, 6:18:22 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/100" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/100" ); 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/100"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/100"
)
notification = res.json() Response
{
"id": 100,
"userId": 229,
"type": "system",
"title": "System notification",
"body": "Bonus desino vel tripudio adimpleo abeo consectetur.",
"isRead": true,
"link": "https://example.com/system/6J8anIOL",
"createdAt": "2025-11-26T18:18:22.437Z"
}