Which open source CRM has the most webhooks, API endpoints and extension points?
All CRMs have their limitations. I think one way to mitigate these limitations is to develop your own modules or apps that interact with the CRM that cover the gaps.
The interaction can happen using REST APIs either on the CRM side or your own app.
For example, if a user enters a new contact in the CRM, I want something to happen that is specific to my company. For this to happen, the CRM calls an endpoint in my app sending the contact's info in the request.
The CRM therefore needs to have the ability to define a url that is used to make the request to it every time a contact is saved.
Also, this should work in the opposite direction. I want to call an endpoint in the CRM to save a new contact. For example, I entered a contact in Excel and Excel can send this contact information to the CRM to be entered automatically by calling an endpoint in the CRM.
I was wondering if there's an open source CRM that supports these scenarios. A CRM that has a lot of API endpoints.
The goal is not to modify the CRM'ss code to add new features but to have it interact with my own app which has the extra features. This way I am in total control of the new features.
[link] [comments]