Activity #592
User #9 attached video/mp4 (22200689 bytes)
9/26/2025, 12:20:32 AM
Overview
attachments / #592
User #9 attached video/mp4 (22200689 bytes)
9/26/2025, 12:20:32 AM
User #9 attached video/mp4 (22200689 bytes)
9/26/2025, 12:20:32 AM
View recordUser #9 attached video/mp4 (22200689 bytes) · 9/26/2025, 12:20:32 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/592" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/592" ); 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/592"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/592"
)
attachment = res.json() Response
{
"id": 592,
"userId": 9,
"targetType": "restaurant",
"targetId": 46,
"url": "https://example.com/files/attachment-592.mp4",
"mimeType": "video/mp4",
"sizeBytes": 22200689,
"createdAt": "2025-09-26T00:20:32.867Z"
}