For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get invoice attachment

Retrieves a specific invoice attachment by its ID.

get

Depending on the Accept header, returns metadata (application/json) or downloads the file. For external attachments (ERP PDFs), returns file content directly; for internal attachments, returns 301 redirect.

Path parameters
idstringRequired

The ID of the invoice attachment to retrieve.

invoiceIdstringRequired
Query parameters
selectstringOptional

Optional select statement to specify which fields to include in the response.

Responses
200

OK

application/json

Represents an attachment associated with an invoice in the billing system.

revisioninteger · int32Optional
namestringOptional

Name of the attachment.

Example: raw records data
typestring · enumOptional

Represents the type of billing attachment.

Possible values:
filenamestringOptional

Represents the name of the file associated with the attachment.

Example: invoice.pdf
sizeinteger · int64 · nullableOptional

Indicates the size of the file in bytes.

Example: 102400
contentTypestringOptional

Represents the MIME type of the file content.

Example: application/pdf
descriptionstringOptional

Provides a description of the attachment.

Example: Invoice for March 2025
isDeletedbooleanOptional

Indicates whether the attachment has been marked as deleted.

Example: false
idstringOptional

The unique identifier of the attachment.

Example: INA-1234-1234
isExternalbooleanOptional

Indicates whether the attachment is stored externally

get
/public/v1/billing/invoices/{invoiceId}/attachments/{id}

Last updated

Was this helpful?