ruckus / quickbooks-ruby

Quickbooks Online REST API V3 - Ruby
MIT License
374 stars 302 forks source link

Add support for sending remaining options with query #592

Closed danielwestendorf closed 1 year ago

danielwestendorf commented 1 year ago

Some endpoints (like invoice) require additional parameters on the query URL to get additional attributes (like include=invoiceLink).

vanboom commented 1 year ago

:+1: Tested in our app and this PR is working great.

invoice = invoice_service.find_by( doc_number: dn, include: "invoiceLink" )
ruckus commented 1 year ago

Thank you!