> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Webhook

Get a webhook's details.

<Note>
  External Documentation

  To learn more, visit the [Smartsheet documentation](https://developers.smartsheet.com/api/smartsheet/openapi/webhooks/getwebhook).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter  | Description            |
  | ---------- | ---------------------- |
  | Webhook ID | The ID of the webhook. |
</div>

## Example Output

```json theme={"dark"}
{
	"callbackUrl": "https://www.myApp.com/webhooks",
	"events": [
		"*.*"
	],
	"name": "Webhook for Sheet Creation",
	"version": 1,
	"enabled": true,
	"id": 8444254503626628,
	"apiClientId": "555555",
	"scopeObjectId": 3285357287499652,
	"apiClientName": "Awesome Smartsheet Application",
	"createdAt": "2019-08-24T14:15:22Z",
	"disabledDetails": "string",
	"modifiedAt": "2019-08-24T14:15:22Z",
	"scope": "sheet",
	"sharedSecret": "216ejjzdnq17mq1q8xs7d4hu8b",
	"stats": {
		"lastCallbackAttempt": "2019-08-24T14:15:22Z",
		"lastCallbackAttemptRetryCount": 0,
		"lastSuccessfulCallback": "2019-08-24T14:15:22Z"
	},
	"status": "ENABLED",
	"subscope": {
		"columnIds": [
			7318427511613316,
			7318427511613123
		]
	}
}
```

## Workflow Library Example

[Get Webhook with Smartsheet and Send Results Via Email](https://library.blinkops.com/workflows/get-webhook-with-smartsheet-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-webhook-with-smartsheet-and-send-results-via-email/canvas" />
</div>
