Activity #153
User #125 attached application/pdf (23726866 bytes)
3/4/2026, 10:00:31 PM
Overview
attachments / #153
User #125 attached application/pdf (23726866 bytes)
3/4/2026, 10:00:31 PM
User #125 attached application/pdf (23726866 bytes)
3/4/2026, 10:00:31 PM
View recordUser #125 attached application/pdf (23726866 bytes) · 3/4/2026, 10:00:31 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/attachments/153" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/attachments/153" ); 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/153"
);
const attachment = (await res.json()) as Attachment; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/attachments/153"
)
attachment = res.json() Response
{
"id": 153,
"userId": 125,
"targetType": "product",
"targetId": 107,
"url": "https://example.com/files/attachment-153.pdf",
"mimeType": "application/pdf",
"sizeBytes": 23726866,
"createdAt": "2026-03-04T22:00:31.276Z"
}