> ## 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.

# Create Webhook

Create a new smartsheet webhook.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter    | Description                                                     |
  | ------------ | --------------------------------------------------------------- |
  | Callback URL | The callback URL assigned to the webhook.                       |
  | Events       | A comma-separated list of events.                               |
  | Name         | The name of the webhook.                                        |
  | Object ID    | The ID of the object that the webhook will be set on.           |
  | Scope        | The type of scope to set the webhook on, for example - `sheet`. |
  | Version      | The version of the webhook.                                     |
</div>

## Example Output

```json theme={"dark"}
{
  "message": "<string>",
  "resultCode": 2,
  "result": {
    "id": 9741141107881169,
    "scopeObjectId": 928909402643491,
    "name": "<string>",
    "callbackUrl": "<string>",
    "version": 0,
    "events": [
      "<string>"
    ],
    "enabled": false,
    "status": "<string>",
    "sharedSecret": "<string>",
    "scope": "<string>",
    "subscope": {
      "columnIds": []
    },
    "createdAt": "2025-03-20T15:43:56Z",
    "modifiedAt": "2025-04-01T05:15:12Z",
  }
}
```

## Workflow Library Example

[Create Webhook with Smartsheet and Send Results Via Email](https://library.blinkops.com/workflows/create-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/create-webhook-with-smartsheet-and-send-results-via-email/canvas" />
</div>
