Activity #1835
User #212 reply Selina Flatley replied to your comment
7/21/2025, 11:56:53 AM
Overview
notifications / #1835
User #212 reply Selina Flatley replied to your comment
7/21/2025, 11:56:53 AM
User #212 reply Selina Flatley replied to your comment
7/21/2025, 11:56:53 AM
View recordUser #212 reply Selina Flatley replied to your comment · 7/21/2025, 11:56:53 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1835" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1835" ); 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/1835"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1835"
)
notification = res.json() Response
{
"id": 1835,
"userId": 212,
"type": "reply",
"title": "Selina Flatley replied to your comment",
"body": "Verus incidunt absque adsidue causa reprehenderit conservo animi.",
"isRead": false,
"link": "https://example.com/reply/XV1JUiLg",
"createdAt": "2025-07-21T11:56:53.290Z"
}