v1

latestOpenAPI 3.0.32026-07-268955212.1 KB
invoices

Get attachments

Retrieve the information of the attachments for the invoice. Use the query parameters to filter and navigate through the results.

Scope: invoices:read

get/companies/{companyId}/invoices/{invoiceId}/attachments

Query parameters

pageinteger

Page number

pageSizeinteger

Number of items per page

querystring

Optional query to filter the data set with supported fields listed below and available operations.

FieldType
fileNamestring

Response

Attachments found

totalItemsinteger
totalPagesinteger
currentPageinteger

Example response

{
  "totalItems": 1,
  "totalPages": 1,
  "currentPage": 1,
  "items": [
    {
      "id": "240a4af0-edfd-47b1-b4ab-f30450eaac19",
      "invoiceId": "a419cf69-db6f-4de9-992c-b1a60942a443",
      "fileName": "myfile.pdf"
    }
  ]
}