Activity #542
User #91 attached video/mp4 (17580764 bytes)
10/5/2025, 4:24:00 PM
Overview
attachments / #542
User #91 attached video/mp4 (17580764 bytes)
10/5/2025, 4:24:00 PM
User #91 attached video/mp4 (17580764 bytes)
10/5/2025, 4:24:00 PM
View recordUser #91 attached video/mp4 (17580764 bytes) · 10/5/2025, 4:24:00 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/542" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/542" ); 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/542"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/542"
)
attachment = res.json() Response
{
"id": 542,
"userId": 91,
"targetType": "recipe",
"targetId": 245,
"url": "https://example.com/files/attachment-542.mp4",
"mimeType": "video/mp4",
"sizeBytes": 17580764,
"createdAt": "2025-10-05T16:24:00.385Z"
}