Activity #10
User #250 system System notification
12/7/2025, 9:55:24 PM
Overview
notifications / #10
User #250 system System notification
12/7/2025, 9:55:24 PM
User #250 system System notification
12/7/2025, 9:55:24 PM
View recordUser #250 system System notification · 12/7/2025, 9:55:24 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/10" ); 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/10"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/10"
)
notification = res.json() Response
{
"id": 10,
"userId": 250,
"type": "system",
"title": "System notification",
"body": "Labore victoria vaco patria ipsum cito adulescens expedita.",
"isRead": false,
"link": "https://example.com/system/f1NP2BsF",
"createdAt": "2025-12-07T21:55:24.322Z"
}