Skip to main content
GET
/
invoices
/
{invoiceId}
/
pdf
Get PDF for MijnKlantportaal Invoice
curl --request GET \
  --url https://api.mijnklantportaal.nl/v1/invoices/{invoiceId}/pdf \
  --header 'Authorization: Bearer <token>'
{
  "pdf": "data:application/pdf;base64,JVBERi0xLjQKMyAwIG9iago8PC9U..."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

invoiceId
string
required

ID of the Invoice to get the PDF for

Example:

"fac_abc12345678"

Response

Successful response

pdf
string

The base64-string of the PDF

Example:

"data:application/pdf;base64,JVBERi0xLjQKMyAwIG9iago8PC9U..."

I