Get a list of webhooks that the user owns.

External Documentation

To learn more, visit the Smartsheet documentation.

Parameters

ParameterDescription
Include AllSelect to get all the webhooks in the result.
PageThe page to show results from.
Page SizeThe maximum number of webhooks to return in the result, defaults to 100.

Example Output

{
  "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

Preview this Workflow on desktop

Get a list of webhooks that the user owns.

External Documentation

To learn more, visit the Smartsheet documentation.

Parameters

ParameterDescription
Include AllSelect to get all the webhooks in the result.
PageThe page to show results from.
Page SizeThe maximum number of webhooks to return in the result, defaults to 100.

Example Output

{
  "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

Preview this Workflow on desktop