# get_invoice_pdf_link

> Get a download link for an invoice PDF: the invoice id, its status and a `downloadUrl` for the PDF bytes.

- Tier: R
- Required scope: read:billing
- Annotations: readOnlyHint, idempotentHint
- Docs: https://api.inleed.com/tools/get-invoice-pdf-link

## Description

Get a download link for an invoice PDF: the invoice id, its status and a `downloadUrl` for the PDF bytes. The URL is served from the authenticated API — open it with the same bearer token; the tool does not return base64 bytes, and there is no public, unauthenticated link. For a browser page where the customer can actually pay, use `create_payment_link`, not this.

## Input schema

- `invoice_id` — integer (required). The numeric invoice id. Get it from list_invoices → data[].id.

## Example call

```json
{
  "name": "get_invoice_pdf_link",
  "arguments": {
    "invoice_id": 1
  }
}
```

