Callback on sheet data update

ram
ram
edited 12/09/19 in Smartsheet Basics

I have created webhook successfully and enabled it to true, so when i change something on the sheet i get a callback. The issue is i dont get what has changed on the sheet or any data. All of these are done in PHP using Curl.

Comments

  • dAVE Inden
    dAVE Inden Employee

    The contents of a webhook Event Callback won't include the specific values that changed and triggered the webhook to be fired. Instead it will have an "events" attribute with an array of objects noting the items that changed and the type of change.

    You can then use additional requests to get the data of the sheet and see the new values.