Activity #140
User #161 attached video/mp4 (14764119 bytes)
4/26/2026, 4:50:08 PM
Overview
attachments / #140
User #161 attached video/mp4 (14764119 bytes)
4/26/2026, 4:50:08 PM
User #161 attached video/mp4 (14764119 bytes)
4/26/2026, 4:50:08 PM
View recordUser #161 attached video/mp4 (14764119 bytes) · 4/26/2026, 4:50:08 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/140" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/140" ); 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/140"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/140"
)
attachment = res.json() Response
{
"id": 140,
"userId": 161,
"targetType": "restaurant",
"targetId": 87,
"url": "https://example.com/files/attachment-140.mp4",
"mimeType": "video/mp4",
"sizeBytes": 14764119,
"createdAt": "2026-04-26T16:50:08.402Z"
}