MYOB integration with Woocommerce

Does anyone here have experience integrating MYOB with Woocommerce?

We are looking for advice on the best way to do it.

Many thanks!

Well, I never used MYOB or Woocommerce, but to integrate 2 separate systems together, you normally check if they offer an API.

MYOB is an accounting service?
Woocommerce is a WP e-commerce “plugin”?

So, you’ll probably want Woocommerce to say to MYOB : “Hey, somebody just bought something for 300$” ?

First, you need to check out if MYOB has an API that Woocommerce could call. Normally, a REST web service is the best bet and easy to use.
I found this when searching for “MYOB rest api”: http://developer.myob.com/
Does that make sense?

Now, you’ll need to find out in Woocommerce how to “hook” some code in it. I found this URL while searching for “woocommerce hook”: http://docs.woothemes.com/document/hooks/

Now, you’ll need to call MYOB’s REST API from Woocommerce hooks: http://stackoverflow.com/questions/9802788/call-a-rest-api-in-php

Does it help?