Activity #628
User #42 reply Edward Jacobson replied to your comment
6/7/2025, 7:11:21 AM
Overview
notifications / #628
User #42 reply Edward Jacobson replied to your comment
6/7/2025, 7:11:21 AM
User #42 reply Edward Jacobson replied to your comment
6/7/2025, 7:11:21 AM
View recordUser #42 reply Edward Jacobson replied to your comment · 6/7/2025, 7:11:21 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/628" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/628" ); 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/628"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/628"
)
notification = res.json() Response
{
"id": 628,
"userId": 42,
"type": "reply",
"title": "Edward Jacobson replied to your comment",
"body": "Porro canto aperte conqueror tabesco.",
"isRead": false,
"link": "https://example.com/reply/3IPqTY3N",
"createdAt": "2025-06-07T07:11:21.211Z"
}