A request will be made to your app when a user does something in the system. The following triggers are available
The endpoint that will be called includes the entity id of the object. For example, if a company was created with id 105, the path will be /clientinsert/105.
Company triggers
Company was created
https://yourapp.com/clientinsert/:entityId
Company was updated
https://yourapp.com/clientupdate/:entityId
Company was deleted
https://yourapp.com/clientdelete/:entityId
Contact triggers
Contact was created
https://yourapp.com/contactinsert/:entityId
Contact was updated
https://yourapp.com/contactupdate/:entityId
Contact was deleted
https://yourapp.com/contactdelete/:entityId
Order or Opportunity triggers
Order or Opportunity was created
https://yourapp.com/orderinsert/:entityId
Order or Opportunity was updated
https://yourapp.com/orderupdate/:entityId
Order or Opportunity was editedhttps://yourapp.com/orderedit
Order or Opportunity was deleted
https://yourapp.com/orderdelete/:entityId
Subscription triggers
Recurring order was created
https://yourapp.com/agreementinsert/:entityId
Recurring order was updated
https://yourapp.com/agreementupdate/:entityId
Recurring order was edited
https://yourapp.com/agreementedit
Recurring order was deleted
https://yourapp.com/agreementdelete/:entityId
Activity triggers
Activity was created
https://yourapp.com/activityinsert/:entityId
Activity was updated
https://yourapp.com/activityupdate/:entityId
Activity was deleted
https://yourapp.com/activitydelete/:entityId
Appointment triggers
Appointment was created
https://yourapp.com/appointmentinsert/:id
Appointment was updated
https://yourapp.com/appointmentupdate/:id
Appointment was deleted
https://yourapp.com/appointmentdelete/:id