Activity #581
User #54 attached application/pdf (33534592 bytes)
5/10/2026, 9:20:37 AM
Overview
attachments / #581
User #54 attached application/pdf (33534592 bytes)
5/10/2026, 9:20:37 AM
User #54 attached application/pdf (33534592 bytes)
5/10/2026, 9:20:37 AM
View recordUser #54 attached application/pdf (33534592 bytes) · 5/10/2026, 9:20:37 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/581" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/581" ); 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/581"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/581"
)
attachment = res.json() Response
{
"id": 581,
"userId": 54,
"targetType": "recipe",
"targetId": 82,
"url": "https://example.com/files/attachment-581.pdf",
"mimeType": "application/pdf",
"sizeBytes": 33534592,
"createdAt": "2026-05-10T09:20:37.687Z"
}