Activity #239
User #242 attached application/pdf (26602473 bytes)
7/2/2025, 11:07:45 PM
Overview
attachments / #239
User #242 attached application/pdf (26602473 bytes)
7/2/2025, 11:07:45 PM
User #242 attached application/pdf (26602473 bytes)
7/2/2025, 11:07:45 PM
View recordUser #242 attached application/pdf (26602473 bytes) · 7/2/2025, 11:07:45 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/239" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/239" ); 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/239"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/239"
)
attachment = res.json() Response
{
"id": 239,
"userId": 242,
"targetType": "recipe",
"targetId": 7,
"url": "https://example.com/files/attachment-239.pdf",
"mimeType": "application/pdf",
"sizeBytes": 26602473,
"createdAt": "2025-07-02T23:07:45.557Z"
}