Activity #1142
User #115 reply Rupert Lebsack replied to your comment
5/7/2026, 11:28:09 AM
Overview
notifications / #1142
User #115 reply Rupert Lebsack replied to your comment
5/7/2026, 11:28:09 AM
User #115 reply Rupert Lebsack replied to your comment
5/7/2026, 11:28:09 AM
View recordUser #115 reply Rupert Lebsack replied to your comment · 5/7/2026, 11:28:09 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1142" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1142" ); 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/1142"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1142"
)
notification = res.json() Response
{
"id": 1142,
"userId": 115,
"type": "reply",
"title": "Rupert Lebsack replied to your comment",
"body": "Territo ante anser cogito sodalitas.",
"isRead": false,
"link": "https://example.com/reply/m_d7-oEA",
"createdAt": "2026-05-07T11:28:09.032Z"
}