Activity #161
User #23 attached video/mp4 (23578763 bytes)
9/19/2025, 6:44:06 PM
Overview
attachments / #161
User #23 attached video/mp4 (23578763 bytes)
9/19/2025, 6:44:06 PM
User #23 attached video/mp4 (23578763 bytes)
9/19/2025, 6:44:06 PM
View recordUser #23 attached video/mp4 (23578763 bytes) · 9/19/2025, 6:44:06 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/161" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/161" ); 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/161"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/161"
)
attachment = res.json() Response
{
"id": 161,
"userId": 23,
"targetType": "restaurant",
"targetId": 75,
"url": "https://example.com/files/attachment-161.mp4",
"mimeType": "video/mp4",
"sizeBytes": 23578763,
"createdAt": "2025-09-19T18:44:06.574Z"
}