Gideon
Gideon

Reputation: 113

Intuit Quickbooks API IPPDotNetDevKit library: Get a Bill entity with vendor name in a single call

I am trying to get all QBO Bill entities with all their vendor names in a single call.

If I call DataServices.FindAll() I receive all the Bills with the correct VendorId, but the VendorName property is set to null.

Is there any way to retrieve the VendorName without making another service call?

Upvotes: 0

Views: 125

Answers (1)

Keith Palmer Jr.
Keith Palmer Jr.

Reputation: 27952

No, there isn't. You'll have to query for both Bills and Vendors.

Upvotes: 2

Related Questions