Activity #409
User #81 reply Charlene Roberts replied to your comment
7/3/2025, 5:13:29 AM
Overview
notifications / #409
User #81 reply Charlene Roberts replied to your comment
7/3/2025, 5:13:29 AM
User #81 reply Charlene Roberts replied to your comment
7/3/2025, 5:13:29 AM
View recordUser #81 reply Charlene Roberts replied to your comment · 7/3/2025, 5:13:29 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/409" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/409" ); 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/409"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/409"
)
notification = res.json() Response
{
"id": 409,
"userId": 81,
"type": "reply",
"title": "Charlene Roberts replied to your comment",
"body": "Vix considero avaritia aduro caste.",
"isRead": false,
"link": "https://example.com/reply/iMXeAY_M",
"createdAt": "2025-07-03T05:13:29.335Z"
}