user2639672
user2639672

Reputation: 19

Where are the customer Jobs stored in QuickBooks and how to retrieve them using SDK?

I had created a Customer in QuickBooks to which I have added a Job. I want to retrieve that Job or say I want to retrieve all the Jobs of a customer. How do I do that.

I am able to retrieve the customer details using this code,

ICustomerQuery customerQueryRq = requestMsgSet.AppendCustomerQueryRq();

But I am having problems in getting the Job details of that Customer. How do I do it using SDK in C#.

Upvotes: 0

Views: 393

Answers (1)

Keith Palmer Jr.
Keith Palmer Jr.

Reputation: 28032

Jobs in QuickBooks are the exact same thing as Customers. Jobs are simply Customers with a parent Customer assigned.

You query them the exact same way you query Customers.

Upvotes: 3

Related Questions