Activity #616
User #49 attached video/mp4 (36305607 bytes)
12/16/2025, 9:25:01 AM
Overview
attachments / #616
User #49 attached video/mp4 (36305607 bytes)
12/16/2025, 9:25:01 AM
User #49 attached video/mp4 (36305607 bytes)
12/16/2025, 9:25:01 AM
View recordUser #49 attached video/mp4 (36305607 bytes) · 12/16/2025, 9:25:01 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/616" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/616" ); const attachment = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/attachments.d.ts https://example-data.com/types/attachments.d.ts
import type { Attachment } from "./types/attachments";
const res = await fetch(
"https://example-data.com/api/v1/attachments/616"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/616"
)
attachment = res.json() Response
{
"id": 616,
"userId": 49,
"targetType": "product",
"targetId": 10,
"url": "https://example.com/files/attachment-616.mp4",
"mimeType": "video/mp4",
"sizeBytes": 36305607,
"createdAt": "2025-12-16T09:25:01.352Z"
}