Activity #603
User #156 attached video/mp4 (35461180 bytes)
1/19/2026, 11:56:43 AM
Overview
attachments / #603
User #156 attached video/mp4 (35461180 bytes)
1/19/2026, 11:56:43 AM
User #156 attached video/mp4 (35461180 bytes)
1/19/2026, 11:56:43 AM
View recordUser #156 attached video/mp4 (35461180 bytes) · 1/19/2026, 11:56:43 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/603" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/603" ); 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/603"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/603"
)
attachment = res.json() Response
{
"id": 603,
"userId": 156,
"targetType": "restaurant",
"targetId": 93,
"url": "https://example.com/files/attachment-603.mp4",
"mimeType": "video/mp4",
"sizeBytes": 35461180,
"createdAt": "2026-01-19T11:56:43.583Z"
}