Activity #395
User #178 attached video/mp4 (47118179 bytes)
8/17/2025, 8:38:01 PM
Overview
attachments / #395
User #178 attached video/mp4 (47118179 bytes)
8/17/2025, 8:38:01 PM
User #178 attached video/mp4 (47118179 bytes)
8/17/2025, 8:38:01 PM
View recordUser #178 attached video/mp4 (47118179 bytes) · 8/17/2025, 8:38:01 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/395" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/395" ); 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/395"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/395"
)
attachment = res.json() Response
{
"id": 395,
"userId": 178,
"targetType": "recipe",
"targetId": 202,
"url": "https://example.com/files/attachment-395.mp4",
"mimeType": "video/mp4",
"sizeBytes": 47118179,
"createdAt": "2025-08-17T20:38:01.304Z"
}