Reputation: 53
I have a database in MySQL and I am using Zoho Books for keeping my accounts.
I haven't found any answers on StackOverflow regarding this topic, please help me out.
Thanks in advance.
Upvotes: 1
Views: 538
Reputation: 31
To have your revenue figures reflect in Zoho Books, you can opt to choose one of the two options below :
Zoho Books supports CSV Import. If you can get your data extracted from your database as a CSV file, you can import it in Zoho Books. This help link depicts more about this.
Zoho Books provides REST APIs through which you can add your data and work with it, if you can somehow retrieve the same from your DB and hit out api calls to Zoho Books. Here's the API documentation that would guide you through the same.
P.S. While the former requires a manual work, the latter can be automated if you have a service that could watch out the changes in your DB and hit corresponding API calls to Zoho Books.
You can also checkout Zoho Creator, that can be used as an intermediate to build an application, that would fetch data from your service and sync with Zoho Books.
Btw, could you post more details on your requirement and use case here?
Upvotes: 3
Reputation: 497
Zoho Books extracts the data from it
It is very unlikely that "Zoho would query YOUR database" (I mean why would they provide this service where they would have access to YOUR database?).
If I'm getting what you are saying then:
You should "watch" for any, for example changes in your revenues for the day (in your database) and make an api call (a POST http method call, to "write" your changes by first fetching it from your database by querying it) to your particular Zoho account (this is where you need to explore their api well), and your job would be done.
Two questions here now:
Let me know if I didn't understand something correctly.
Upvotes: 1