Activity #40
User #77 attached video/mp4 (22182297 bytes)
4/2/2026, 12:04:03 AM
Overview
attachments / #40
User #77 attached video/mp4 (22182297 bytes)
4/2/2026, 12:04:03 AM
User #77 attached video/mp4 (22182297 bytes)
4/2/2026, 12:04:03 AM
View recordUser #77 attached video/mp4 (22182297 bytes) · 4/2/2026, 12:04:03 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/40" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/40" ); 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/40"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/40"
)
attachment = res.json() Response
{
"id": 40,
"userId": 77,
"targetType": "restaurant",
"targetId": 39,
"url": "https://example.com/files/attachment-40.mp4",
"mimeType": "video/mp4",
"sizeBytes": 22182297,
"createdAt": "2026-04-02T00:04:03.090Z"
}