Activity #761
User #14 attached video/mp4 (32205454 bytes)
7/10/2025, 2:36:01 PM
Overview
attachments / #761
User #14 attached video/mp4 (32205454 bytes)
7/10/2025, 2:36:01 PM
User #14 attached video/mp4 (32205454 bytes)
7/10/2025, 2:36:01 PM
View recordUser #14 attached video/mp4 (32205454 bytes) · 7/10/2025, 2:36:01 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/761" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/761" ); 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/761"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/761"
)
attachment = res.json() Response
{
"id": 761,
"userId": 14,
"targetType": "restaurant",
"targetId": 73,
"url": "https://example.com/files/attachment-761.mp4",
"mimeType": "video/mp4",
"sizeBytes": 32205454,
"createdAt": "2025-07-10T14:36:01.827Z"
}