Search
-
Hi gbisaga,
Off the top of my head there are 2 possibilities. 1. The customer has not synced to quickbooks yet. 2. Check the field entity type, if it is a 'Customer Lead' and not a 'Customer' it won't sync to QB.
Dave
-
Hi rgatton,
I'm gonna suggest (if you haven't already) make a copy of the stock quickbooks_recievepayment screen and get familar with what happens when a payment is recieved and applied to an invoice. (Sadly, we don't have a stock screen that does what you are asking, but happily you can always create one). The process should be ...
-
Hi gbisaga,
No you cannot, since you may have deleted records. What you can do however is a simple call where for your fields parameter all you pass in is max(RecordID) and that will give you your max recordid, then you can build your query to get all records. Or you can use count(RecordID) to get the count. Simple C# examples ...
-
Hi ImTheirWebGuy, gbisaga, and LaCrews,
For any .asmx page you can click the name of the available operations and that will take you into operation specification. This includes a description of the soap envelope, which is what you were asking for ImTheirWebGuy. This is standard. So you can go to ...
-
Hi Matt and ImTheirWebGuy,
Good catch Matt.
ImTheirWebGuy you're gonna want to look at the documentation here http://www.methodintegration.com/Method-API-for-QuickBooks-CRM.aspx
- like is supported
- (referr ing to t he documentation) datReturnedDataSet is a dataset passed in by reference....see my example above for the c# ...
-
Hi ImTheirWebGuy,
We are a .Net not a php shop...so I don't have a php example to give you. I'm gonna suggest googling php to call a webservice...note its an .asmx not an .svc
The following is a C# example that will retrieve recordid and companyname where the companyname is 4th from the vendor table
System.Data.DataSet ...
-
Hi Gary,
Just following up on Mark's point (he beat me to it)....you can query for information about any record in your method account using one of the following functions.: MethodAPISelect_DataSet , MethodAPISelect_DataSetV2, MethodAPISelect_XML, MethodAPISelect_XMLV2
So continuing my example above, what if I wanted to include Amy ...
-
Hi gbisaga,
Using MethodAPIFieldList or MethodAPIFieldListV2 will tell you the related tables for a field (if any). For example when I query for information from the estimate table...the information I recieve(note I'm only showing the part for the field customer) is
<Record> ...
-
Hey Matt,
Good(weird?) find....anyway...there was a check that the word 'MIurl' had to be in all lowercase characters, or else it would use link.methodintegration.com. I've removed that check.
Let me know if the problem is solved for you.
Dave
-
Hi David Byrd,
We do not allow users to directly access the database server. That would be a severe security policy violation (among other issues....)
MethodAPI is a webservice (located at https://www.methodintegration.com/MethodAPI/Service.asmx), which you can use to manipulate data in your method account programmatically.
You can ...
|
|
|