We have a webhook created in one of our Smartsheets, and we've been noticing lately that the webhook callbacks immediately disables the webhook after 1 try, causing data discrepancies between the Smartsheet and the system it sends the data to. Here's an excerpt JSON message received from Smartsheet showing the callback only trying once, then disables the webhook immediately:
},
"stats": {
"lastCallbackAttempt": "2026-06-17T15:30:06Z",
"lastCallbackAttemptRetryCount": 1,
"lastSuccessfulCallback": "2026-06-17T15:29:34Z"
},
"disabledDetails": "Maximum callback delivery retries exceeded (1 attempts). Final status: 0, reason: Connection error: timeout",
"createdAt": "2026-02-09T08:14:45Z",
"modifiedAt": "2026-06-17T15:30:36Z"
Based on documentation, the Webhook callback attempts 14 times before it disables the webhook. Can someone explain why this disables the webhook only after 1 attempt?