Short question: Using the get_invoices endpoint, when I try to access the URL from the InvoiceFiles.pdfFileUrl response, it pops up a api.zuora login form. I need my customers to be able to access these PDFs. If I enter my Zuora creds, it will display the invoice, but of course my customers don't have Zuora creds. Is there some sort of setting to allow customers to view PDFs from the URL? Long Question: The get_invoices endpoint returns 2 items of interest. body is the REST URL of the invoice PDF file. and InvoiceFiles returns id ID of the invoice PDF file. This is the ID for the file object and different from the file handle id in the pdfFileUrl field. To open a file, you need to use the file handle ID. versionNumber Version number of the invoice PDF file pdfFileUrl REST URL for the invoice PDF file. Click the URL to open the invoice PDF file. Is there a difference between what is returned by body and InvoiceFiles.pdfFileUrl, and how do I use them correctly? The pdfFileUrl can return multiple files. Each time the invoice is update (the customer pays etc) it generates another file. The most recent is the at index 0. However trying to access any of the URLs, I get a api.zuora login form. If I enter my Zuora creds, it will display the invoice, but of course my customers don't have Zuora creds. The example on the endpoint page - https://knowledgecenter.zuora.com/DC_Developers/C_REST_API/B_REST_API_reference/Transactions/GET_invoices - has both the body and the pdfFiles return as blank so that doesn't help much. Searched through the community for a while, couldn't find anything remotely similar to my issue. Thanks!
... View more