Activity #1049
User #101 reply Lennie Dickinson replied to your comment
6/12/2025, 7:48:50 PM
Overview
notifications / #1049
User #101 reply Lennie Dickinson replied to your comment
6/12/2025, 7:48:50 PM
User #101 reply Lennie Dickinson replied to your comment
6/12/2025, 7:48:50 PM
View recordUser #101 reply Lennie Dickinson replied to your comment · 6/12/2025, 7:48:50 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1049" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1049" ); 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/1049"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1049"
)
notification = res.json() Response
{
"id": 1049,
"userId": 101,
"type": "reply",
"title": "Lennie Dickinson replied to your comment",
"body": "Cavus curto comes angulus corroboro.",
"isRead": true,
"link": null,
"createdAt": "2025-06-12T19:48:50.408Z"
}