Activity #409
User #66 attached image/png (31393312 bytes)
3/17/2026, 7:42:35 PM
Overview
attachments / #409
User #66 attached image/png (31393312 bytes)
3/17/2026, 7:42:35 PM
User #66 attached image/png (31393312 bytes)
3/17/2026, 7:42:35 PM
View recordUser #66 attached image/png (31393312 bytes) · 3/17/2026, 7:42:35 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/409" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/409" ); 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/409"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/409"
)
attachment = res.json() Response
{
"id": 409,
"userId": 66,
"targetType": "restaurant",
"targetId": 41,
"url": "https://picsum.photos/seed/attachment-409/400/400",
"mimeType": "image/png",
"sizeBytes": 31393312,
"createdAt": "2026-03-17T19:42:35.541Z"
}