Activity #438
User #49 attached video/mp4 (48148669 bytes)
6/5/2025, 12:31:06 PM
Overview
attachments / #438
User #49 attached video/mp4 (48148669 bytes)
6/5/2025, 12:31:06 PM
User #49 attached video/mp4 (48148669 bytes)
6/5/2025, 12:31:06 PM
View recordUser #49 attached video/mp4 (48148669 bytes) · 6/5/2025, 12:31:06 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/438" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/438" ); 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/438"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/438"
)
attachment = res.json() Response
{
"id": 438,
"userId": 49,
"targetType": "restaurant",
"targetId": 12,
"url": "https://example.com/files/attachment-438.mp4",
"mimeType": "video/mp4",
"sizeBytes": 48148669,
"createdAt": "2025-06-05T12:31:06.254Z"
}