Using webhooks, you can receive informations about occurring events in TeamGrid.
Visit the settings of your team, to register new webhooks.
Every webhook is sending a POST request, with a JSON encoded body and the following data:
{
"event": "…", // name of the event
"userId": "…", // id of the user who triggered the event. Not sent if the event was triggered by the system
"item": { … } // data of the regarding item
}
Please note, that a webhook will be automatically deactivated, if it responds with a 410 status code or fails more than 10 times in sequence.