Activity #453
User #43 attached image/png (28928605 bytes)
5/12/2026, 9:45:00 AM
Overview
attachments / #453
User #43 attached image/png (28928605 bytes)
5/12/2026, 9:45:00 AM
User #43 attached image/png (28928605 bytes)
5/12/2026, 9:45:00 AM
View recordUser #43 attached image/png (28928605 bytes) · 5/12/2026, 9:45:00 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/453" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/453" ); 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/453"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/453"
)
attachment = res.json() Response
{
"id": 453,
"userId": 43,
"targetType": "restaurant",
"targetId": 63,
"url": "https://picsum.photos/seed/attachment-453/400/800",
"mimeType": "image/png",
"sizeBytes": 28928605,
"createdAt": "2026-05-12T09:45:00.695Z"
}