Sharable link for the invoice sent to external customers. The link is generated only for invoices with online payment enabled and having a valid customer email address. Include query param include=invoiceLink to get the link back on query response.
I can't find any details regarding how I pass in query parameters? Looks like the keys I specify are specifically for the where clause. (other than things like sorting, limits, pagination, and count)
My goal: use the
findInvoices
method to fetch a list of invoices by customer ID, with theInvoiceLink
field included for each invoice.According to https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/invoice#the-invoice-object, the
InvoiceLink
field is only included if the query paraminclude=invoiceLink
is passed in.Here's a snippet of my code:
I can't find any details regarding how I pass in query parameters? Looks like the keys I specify are specifically for the
where
clause. (other than things like sorting, limits, pagination, and count)