Will retrieving Invoice documents as PDFs be available in QuickBooks API V3? If so, will QuickBooks Desktop be supported as well? In V2 (Intuit Data Services), only QuickBooks Online was supported.
Asked
Active
Viewed 1,220 times
2 Answers
3
It is not available in v3 yet. Currently only in v2. It will be supported eventually but not in the next 6 months. You can of course use v3 and v2 only to save an invoice as pdf if necessary.
thanks
Jarred

Jarred Keneally
- 1,931
- 11
- 12
-
Thanks Jarred. What about PDFs for QB Desktop in V3? – ihoka Jun 20 '13 at 07:38
-
I was referring to both QBO and QBD. – Jarred Keneally Jun 20 '13 at 10:43
-
1Looks like this is possible now. https://intuitdeveloper.lc.intuit.com/questions/1060982-quickbooks-online-api-invoice-pdf-download – Eric Mason Jun 09 '15 at 10:12
0
$dataService->throwExceptionOnError(true);
$invoice = $dataService->FindById("Invoice", $invoiceId);
$filename = "$customerEmail.pdf";
$pdfData = $dataService->DownloadPDF($invoice, null, true);
// Send the file to the browser.
header('Content-Type: application/pdf');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
header('Content-Disposition: inline; filename="' . $filename . '"');
echo $pdfData;

Dharmik Dungarani
- 11
- 1
-
As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Jan 21 '22 at 21:32