Activity #380
User #72 attached video/mp4 (12115156 bytes)
4/9/2026, 1:53:17 PM
Overview
attachments / #380
User #72 attached video/mp4 (12115156 bytes)
4/9/2026, 1:53:17 PM
User #72 attached video/mp4 (12115156 bytes)
4/9/2026, 1:53:17 PM
View recordUser #72 attached video/mp4 (12115156 bytes) · 4/9/2026, 1:53:17 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/380" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/380" ); 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/380"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/380"
)
attachment = res.json() Response
{
"id": 380,
"userId": 72,
"targetType": "restaurant",
"targetId": 40,
"url": "https://example.com/files/attachment-380.mp4",
"mimeType": "video/mp4",
"sizeBytes": 12115156,
"createdAt": "2026-04-09T13:53:17.819Z"
}