Activity #87
User #22 attached video/mp4 (43412056 bytes)
3/2/2026, 2:00:28 PM
Overview
attachments / #87
User #22 attached video/mp4 (43412056 bytes)
3/2/2026, 2:00:28 PM
User #22 attached video/mp4 (43412056 bytes)
3/2/2026, 2:00:28 PM
View recordUser #22 attached video/mp4 (43412056 bytes) · 3/2/2026, 2:00:28 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/87" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/87" ); 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/87"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/87"
)
attachment = res.json() Response
{
"id": 87,
"userId": 22,
"targetType": "recipe",
"targetId": 198,
"url": "https://example.com/files/attachment-87.mp4",
"mimeType": "video/mp4",
"sizeBytes": 43412056,
"createdAt": "2026-03-02T14:00:28.836Z"
}