Activity #1271
User #219 mention Charlene Roberts mentioned you in a post
5/29/2025, 9:30:48 PM
Overview
notifications / #1271
User #219 mention Charlene Roberts mentioned you in a post
5/29/2025, 9:30:48 PM
User #219 mention Charlene Roberts mentioned you in a post
5/29/2025, 9:30:48 PM
View recordUser #219 mention Charlene Roberts mentioned you in a post · 5/29/2025, 9:30:48 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1271" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1271" ); 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/1271"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1271"
)
notification = res.json() Response
{
"id": 1271,
"userId": 219,
"type": "mention",
"title": "Charlene Roberts mentioned you in a post",
"body": "Admoneo villa valeo arguo aqua carbo demum cubo victoria.",
"isRead": true,
"link": "https://example.com/mention/JBSMQV3R",
"createdAt": "2025-05-29T21:30:48.952Z"
}