Activity #745
User #241 attached video/mp4 (9307130 bytes)
8/18/2025, 3:02:50 AM
Overview
attachments / #745
User #241 attached video/mp4 (9307130 bytes)
8/18/2025, 3:02:50 AM
User #241 attached video/mp4 (9307130 bytes)
8/18/2025, 3:02:50 AM
View recordUser #241 attached video/mp4 (9307130 bytes) · 8/18/2025, 3:02:50 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/745" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/745" ); 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/745"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/745"
)
attachment = res.json() Response
{
"id": 745,
"userId": 241,
"targetType": "product",
"targetId": 152,
"url": "https://example.com/files/attachment-745.mp4",
"mimeType": "video/mp4",
"sizeBytes": 9307130,
"createdAt": "2025-08-18T03:02:50.140Z"
}