Activity #310
User #31 attached video/mp4 (36724006 bytes)
10/11/2025, 10:44:15 PM
Overview
attachments / #310
User #31 attached video/mp4 (36724006 bytes)
10/11/2025, 10:44:15 PM
User #31 attached video/mp4 (36724006 bytes)
10/11/2025, 10:44:15 PM
View recordUser #31 attached video/mp4 (36724006 bytes) · 10/11/2025, 10:44:15 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/310" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/310" ); 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/310"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/310"
)
attachment = res.json() Response
{
"id": 310,
"userId": 31,
"targetType": "product",
"targetId": 102,
"url": "https://example.com/files/attachment-310.mp4",
"mimeType": "video/mp4",
"sizeBytes": 36724006,
"createdAt": "2025-10-11T22:44:15.738Z"
}