Let me first remind you that ERPNext rides on top of the Frappe framework. Making API calls from any part of ERPNext or the frappe framework is not any different from how you would do it say in Django. In this episode, I will do the basic API calls you can make. This will however give you a general overview on how to work with any API.
Related Posts
How To Remotely Host ERPNext Database
Good software design will emphasize the importance of separating the database from the software application. The server where the database is hosted needs an extra layer of protection as it contains all the data. This is sometimes known as remote database setup. This can also be achieved in ERPNext and the Frappe Framework. In this […]
Unknown log format “main” – Nginx
This error can occur during installation of ERPNext as nginx: [emerg] unknown log format “main” in /etc/nginx/conf.d/frappe-bench.conf:101. This error can also occur when setting up nginx outside ERPNext. Either-way, here is a brief on the causes of the error and how to get it resolved. The main reason for the failure was that I had […]
Automating Actions with Hooks & Controller Methods in ERPNext/Frappe
In this ERPNext / Frappe Framework tutorial, I will show you how you can automate actions with Hooks by executing controller methods. Here, we will use hooks to trigger changes in other DocTypes when we save the document we are working on. On saving the document, we want to open a record on another document […]