List credit memo attachments
Returns all attachments associated with the credit memo specified in the route parameter (e.g., CRD-3295-7900-0234). Supports OData query parameters for filtering, sorting, and pagination.
Path parameters
creditMemoIdstringRequired
Responses
200
OK
application/json
get/public/v1/billing/credit-memos/{creditMemoId}/attachments
GET /public/v1/billing/credit-memos/{creditMemoId}/attachments HTTP/1.1
Host: api.platform.softwareone.com
Accept: */*
200
OK
{
"$meta": {
"pagination": {
"offset": 1,
"limit": 1,
"total": 1
},
"omitted": [
"text"
]
},
"data": [
{
"audit": {
"created": {
"at": "2026-01-01T00:00:00.000Z",
"by": {
"id": "text",
"name": "text",
"icon": "text",
"revision": 1
}
},
"updated": {
"at": "2026-01-01T00:00:00.000Z",
"by": {
"id": "text",
"name": "text",
"icon": "text",
"revision": 1
}
}
},
"$meta": {
"omitted": [
"text"
]
},
"revision": 1,
"name": "raw records data",
"type": "Input",
"filename": "invoice.pdf",
"size": 102400,
"contentType": "application/pdf",
"description": "Invoice for March 2025",
"isDeleted": false,
"id": "CMA-1234-1234",
"creditMemo": {
"revision": 1,
"id": "text"
},
"isExternal": true
}
]
}Last updated
Was this helpful?