Activity #155
User #41 attached video/mp4 (21609674 bytes)
10/30/2025, 12:36:19 PM
Overview
attachments / #155
User #41 attached video/mp4 (21609674 bytes)
10/30/2025, 12:36:19 PM
User #41 attached video/mp4 (21609674 bytes)
10/30/2025, 12:36:19 PM
View recordUser #41 attached video/mp4 (21609674 bytes) · 10/30/2025, 12:36:19 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/155" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/155" ); 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/155"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/155"
)
attachment = res.json() Response
{
"id": 155,
"userId": 41,
"targetType": "recipe",
"targetId": 120,
"url": "https://example.com/files/attachment-155.mp4",
"mimeType": "video/mp4",
"sizeBytes": 21609674,
"createdAt": "2025-10-30T12:36:19.993Z"
}