Activity #142
User #113 attached video/mp4 (28890947 bytes)
8/29/2025, 9:47:11 PM
Overview
attachments / #142
User #113 attached video/mp4 (28890947 bytes)
8/29/2025, 9:47:11 PM
User #113 attached video/mp4 (28890947 bytes)
8/29/2025, 9:47:11 PM
View recordUser #113 attached video/mp4 (28890947 bytes) · 8/29/2025, 9:47:11 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/142" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/142" ); 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/142"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/142"
)
attachment = res.json() Response
{
"id": 142,
"userId": 113,
"targetType": "product",
"targetId": 107,
"url": "https://example.com/files/attachment-142.mp4",
"mimeType": "video/mp4",
"sizeBytes": 28890947,
"createdAt": "2025-08-29T21:47:11.878Z"
}