-
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…
-
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…
-
Webhook subscope documentation error
In the webhook API documentation the subscope attribute is defined as follows. An object that contains an array of column Ids if you want to limit the subscription to a subscope. Specified when a webhook is created and cannot be changed. But then the example has the following. That is not an array of column ids. That is a…
-
Using WebHooks & API to create your own custom Column Functions
I thought it might be useful to share a general method I developed to add Functions missing from Smartsheet. This technique makes use of WebHooks & the API. Most important: users can add this to their sheets nearly as easily as they can add formulas. They do NOT need my help as a programmer For example here are a couple…
-
Enable Webhook Responds 404 Not Found
Hi Guys, I am new to creating webhooks so I apologize if this is something simple. I am using C# to register my webhook with the api. That works as intended. Then, I am calling all of the webhooks for the sheet using `SheetResources.ListSheets(null, null, null)` which also returns the list of webhooks fine. Then I am…