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