Intro

Intro

Webhooks could be configured upon your request. Each endpoint should be asked to be enabled.
If request is not successful, system will try it 3 times in total until it will move to next request.

Webhooks are synchronous so you will receive every change in the order they were made.

Things to consider:

  • Every request is send as POST request to the provided URL.
  • There are 3 types of actions: CREATE, UPDATE, DELETE
  • data contains all the info provided for that object.
  • object describes which object this request is referring to.
  • All request are send with Content-Type application/json header.
  • Authentication is required with Auth bearer token, which should be provided before enabling webhooks