Activity #439
User #220 reply Sammy Schmidt replied to your comment
6/20/2025, 6:43:27 AM
Overview
notifications / #439
User #220 reply Sammy Schmidt replied to your comment
6/20/2025, 6:43:27 AM
User #220 reply Sammy Schmidt replied to your comment
6/20/2025, 6:43:27 AM
View recordUser #220 reply Sammy Schmidt replied to your comment · 6/20/2025, 6:43:27 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/439" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/439" ); 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/439"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/439"
)
notification = res.json() Response
{
"id": 439,
"userId": 220,
"type": "reply",
"title": "Sammy Schmidt replied to your comment",
"body": "Quo basium tam tantillus molestias corporis caries.",
"isRead": true,
"link": "https://example.com/reply/r-jQnpTb",
"createdAt": "2025-06-20T06:43:27.315Z"
}