List Custom Ledger Attachments

Retrieves a list of custom ledger attachments.

get
Path parameters
customLedgerIdstringRequired
Responses
200
OK
application/json
get
GET /public/v1/billing/custom-ledgers/{customLedgerId}/attachments HTTP/1.1
Host: 
Accept: */*
200

OK

{
  "$meta": {
    "pagination": {
      "offset": 1,
      "limit": 1,
      "total": 1
    },
    "omitted": [
      "text"
    ]
  },
  "data": [
    {
      "$meta": {
        "omitted": [
          "text"
        ]
      },
      "audit": {
        "created": {
          "at": "2025-04-30T14:30:00.0000000+00:00",
          "by": {
            "id": "text",
            "name": "text",
            "icon": "text"
          }
        },
        "updated": {
          "at": "2025-04-30T14:30:00.0000000+00:00",
          "by": {
            "id": "text",
            "name": "text",
            "icon": "text"
          }
        }
      },
      "name": "raw records data",
      "type": "Input",
      "filename": "invoice.pdf",
      "size": 102400,
      "contentType": "application/pdf",
      "description": "Invoice for March 2025",
      "isDeleted": false,
      "id": "CLA-1234-1234",
      "customLedger": {
        "id": "text",
        "name": "Quarterly Revenue Ledger"
      }
    }
  ]
}

Last updated

Was this helpful?