Activity #459
User #69 attached video/mp4 (22398897 bytes)
8/1/2025, 1:52:06 AM
Overview
attachments / #459
User #69 attached video/mp4 (22398897 bytes)
8/1/2025, 1:52:06 AM
User #69 attached video/mp4 (22398897 bytes)
8/1/2025, 1:52:06 AM
View recordUser #69 attached video/mp4 (22398897 bytes) · 8/1/2025, 1:52:06 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/459" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/459" ); 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/459"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/459"
)
attachment = res.json() Response
{
"id": 459,
"userId": 69,
"targetType": "recipe",
"targetId": 57,
"url": "https://example.com/files/attachment-459.mp4",
"mimeType": "video/mp4",
"sizeBytes": 22398897,
"createdAt": "2025-08-01T01:52:06.784Z"
}