Activity #607
User #36 attached video/mp4 (20469692 bytes)
11/23/2025, 10:18:16 AM
Overview
attachments / #607
User #36 attached video/mp4 (20469692 bytes)
11/23/2025, 10:18:16 AM
User #36 attached video/mp4 (20469692 bytes)
11/23/2025, 10:18:16 AM
View recordUser #36 attached video/mp4 (20469692 bytes) · 11/23/2025, 10:18:16 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/607" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/607" ); 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/607"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/607"
)
attachment = res.json() Response
{
"id": 607,
"userId": 36,
"targetType": "restaurant",
"targetId": 13,
"url": "https://example.com/files/attachment-607.mp4",
"mimeType": "video/mp4",
"sizeBytes": 20469692,
"createdAt": "2025-11-23T10:18:16.698Z"
}