suitecrm integrate with sharepoint?

Dear All,

May I know suitecrm able to integrate with SharePoint?

SuiteCRM does not support integration with SharePoint by default. You should find extension pack but I’m not sure it exist and it’s for free. Of course you can write code yourself. It should work similar to integration with Google Drive.

Hi,
you can write your integration by your self, using the restfull or soap web services of suitecrm… or you can ask to a developer

The integration sends files to SharePoint when user add new file by Document module. I use php-spo library. There are easy methods to create integrate easy way.

You can use “logic hook” of suitecrm to intercept the action of “save document” and send from here every information you want to sharepoint.

This is the link of the documentation:
http://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide_6.5/Module_Framework/Logic_Hooks/Module_Hooks/

You can use the logic hook “after_save” in module “documents”, that call a method after every save of the module documents. Inside this method you have all the information you need about the document saved.