-
Webhook not getting event callback
Hi all, I have been using webhooks in my nodejs application for awhile and sometime I think my webhook is not receiving the event callback. In my sheet I have a column A, (not editable directly) which is a formula that's calculated using column B. When an user updates column B, column A gets updated which triggers the…
-
Webhook delay with attachments (1-2hours!)
Hello! I'm using webhooks to notify me when a file is attached either to a sheet or a row. Sometimes I get a notification after the usual delay of ~1 minute, however I regularly see cases where there is a delay of around 1-2 hours. I don't see this delay when making row/cell changes to the sheet. I always get the webhook…
-
Have you seen a change in the time taken to trigger a WebHook?
I use WebHook in a number of places in our Smartsheet system. In the past after a sheet was saved, WebHooks would fire and be received within a few seconds by my servers. Now I am seeing a consistent 60 second delay after save for WebHooks to contact my servers. I think this change has happened in the last 6 months. For…
-
Regression in Create Webhooks API?
Hello in the past 36-ish hours, the response to the Create Webhooks API (POST /2.0/Webhooks) appears to have suffered a regression. Prior to the change, this API (and all other POST and PUT Smartsheet APIs we have been using) would accept the following as the Content-Type header for the HTTP Request: Content-Type:…
-
Hyperlink manual trigger data shuttle workflow
As of now the data shuttle workflow can only manual trigger in the data shuttle page by clicking on "Run". My idea is to allow user to trigger running a workflow by hyperlink/webhook. So user can add the link in their dashboard as a function of Button. To manual trigger the data shuttle workflow when they are reviewing the…
-
Help with Verification Step of Webhook Creation Using Bridge
I am trying to use the Bridge API Call Utility to create a webhook on a sheet. I then want to use the Bridge Inbound Webhook integration to monitor sheet activity via the webhook and trigger a Bridge Workflow. I am able to create the webhook, but I'm having trouble figuring out how to complete the Verification Process. Can…
-
Webhook callbacks need to trigger immediately
We use smartsheet webhook functionality through API and are heavily dependent on it. From few weeks we are seeing callbacks are not getting triggered immediately from smartsheet when event change occurs and it is taking 60 seconds to trigger the callback. I raised a case to possibility of reverting changes as this was a…
-
Cant enable webhook in python
Hi, Im trying to enable a webhook in python with this code, but Im just having this error : disabledDetails": "Response was missing verification response in both header and body, or body JSON may have been invalid. (ref id: latvtu)", "enabled": false in that sense, I think that the callback url is well configured because…
-
Automatically Organizing Rows into Hierarchy
Hello SS Developers! I am both a formula and API-deficient SS user. I believe my question should be directed toward the API/Developer community, as I asked the AI formula developer tool to create a formula for this request and it stated, "Smartsheet formulas cannot be used to automatically organize rows into hierarchy". I…
-
SmartSheet webhook -> Google Apps Script verification
Hello, I'm trying to set up Smartsheet's webhook listener using Google Apps Script, but having an issue with the verification step. My code looks as follows: function doPost(e) { var challenge = JSON.parse(e.postData.contents).challenge; var response = JSON.stringify({'smartsheetHookResponse':challenge}); return…