Activity #1139
User #163 updated product #132
7/16/2025, 5:57:37 AM
Overview
activities / #1139
User #163 updated product #132
7/16/2025, 5:57:37 AM
User #163 updated product #132
7/16/2025, 5:57:37 AM
View recordUser #163 updated product #132 · 7/16/2025, 5:57:37 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activities/1139" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activities/1139" ); const activity = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/activities.d.ts https://example-data.com/types/activities.d.ts
import type { Activity } from "./types/activities";
const res = await fetch(
"https://example-data.com/api/v1/activities/1139"
);
const activity = (await res.json()) as Activity; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activities/1139"
)
activitie = res.json() Response
{
"id": 1139,
"userId": 163,
"verb": "updated",
"targetType": "product",
"targetId": 132,
"createdAt": "2025-07-16T05:57:37.489Z"
}