Activity #115
User #70 attached application/pdf (46260957 bytes)
11/15/2025, 9:50:16 AM
Overview
attachments / #115
User #70 attached application/pdf (46260957 bytes)
11/15/2025, 9:50:16 AM
User #70 attached application/pdf (46260957 bytes)
11/15/2025, 9:50:16 AM
View recordUser #70 attached application/pdf (46260957 bytes) · 11/15/2025, 9:50:16 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/115" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/115" ); 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/115"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/115"
)
attachment = res.json() Response
{
"id": 115,
"userId": 70,
"targetType": "restaurant",
"targetId": 61,
"url": "https://example.com/files/attachment-115.pdf",
"mimeType": "application/pdf",
"sizeBytes": 46260957,
"createdAt": "2025-11-15T09:50:16.587Z"
}