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

# List Webhooks

Get a list of webhooks that the user owns.

<Note>
  External Documentation

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

## Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                |
  | ----------- | -------------------------------------------------------------------------- |
  | Include All | Select to get all the webhooks in the result.                              |
  | Page        | The page to show results from.                                             |
  | Page Size   | The maximum number of webhooks to return in the result, defaults to `100`. |
</div>

## Example Output

```json theme={"dark"}
{
  "pageNumber": 2,
  "pageSize": 194,
  "totalPages": 0,
  "totalCount": 7,
  "data": [
    {
      "id": 4087990664851169,
      "name": "<string>",
      "scope": "<string>",
      "scopeObjectId": 1553790378195432,
      "subscope": {
        "columnIds": [
          6484056513797066
        ]
      },
      "events": [
        "<string>"
      ],
      "callbackUrl": "<string>",
      "sharedSecret": "<string>",
      "enabled": true,
      "status": "<string>",
      "version": 1,
      "stats": {
        "lastCallbackAttemptRetryCount": 0,
        "lastCallbackAttempt": "<string>",
        "lastSuccessfulCallback": "<string>"
      },
      "createdAt": "2025-03-20T15:43:56Z",
      "modifiedAt": "2025-04-01T05:15:12Z",
    },
    {
      "id": 12435242256669187,
      "name": "<string>",
      "scope": "<string>",
      "scopeObjectId": 1772906729409245,
      "subscope": {
        "columnIds": []
      },
      "events": [
        "<string>"
      ],
      "callbackUrl": "<string>",
      "sharedSecret": "<string>",
      "enabled": true,
      "status": "<string>",
      "version": 2,
      "stats": {
        "lastCallbackAttemptRetryCount": 1,
        "lastCallbackAttempt": "2020-10-14T17:28:10",
        "lastSuccessfulCallback": "2020-03-16T15:08:03"
      },
      "createdAt": "2025-05-05T17:26:07Z",
      "modifiedAt": "2025-05-05T17:27:30Z"
    }
  ]
}
```

## Workflow Library Example

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