Activity #403
User #52 attached image/jpeg (20234101 bytes)
12/22/2025, 9:53:56 PM
Overview
attachments / #403
User #52 attached image/jpeg (20234101 bytes)
12/22/2025, 9:53:56 PM
User #52 attached image/jpeg (20234101 bytes)
12/22/2025, 9:53:56 PM
View recordUser #52 attached image/jpeg (20234101 bytes) · 12/22/2025, 9:53:56 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/403" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/403" ); 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/403"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/403"
)
attachment = res.json() Response
{
"id": 403,
"userId": 52,
"targetType": "restaurant",
"targetId": 84,
"url": "https://picsum.photos/seed/attachment-403/600/400",
"mimeType": "image/jpeg",
"sizeBytes": 20234101,
"createdAt": "2025-12-22T21:53:56.933Z"
}