Activity #1217
User #45 mention Virginie O'Connell mentioned you in a post
5/1/2026, 11:54:05 AM
Overview
notifications / #1217
User #45 mention Virginie O'Connell mentioned you in a post
5/1/2026, 11:54:05 AM
User #45 mention Virginie O'Connell mentioned you in a post
5/1/2026, 11:54:05 AM
View recordUser #45 mention Virginie O'Connell mentioned you in a post · 5/1/2026, 11:54:05 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/notifications/1217" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/notifications/1217" ); 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/1217"
);
const notification = (await res.json()) as Notification; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/notifications/1217"
)
notification = res.json() Response
{
"id": 1217,
"userId": 45,
"type": "mention",
"title": "Virginie O'Connell mentioned you in a post",
"body": "Caelum somnus modi aufero charisma.",
"isRead": false,
"link": "https://example.com/mention/v_QuSOM8",
"createdAt": "2026-05-01T11:54:05.907Z"
}