---
title: "List webhooks"
method: GET
path: "/webhooks"
tags: ["webhooks"]
---

# List webhooks

`GET /webhooks`

Lists all the webhooks for your organization.

## Response `200`

Retrieves a paginated list of all webhooks for your organization. If no webhooks are found, the response body is blank. You can also get a list with deleted options by adding the `with_deleted=true` parameter.

- WebhooksResponse
  - `data` Webhook[]
    - `id` integer, required — Unique identifier for the webhook.
    - `url` string, uri, required — URL associated with the webhook, to which events are posted.
    - `status` 'active', required — The status of the webhook. Currently, the only valid status for a webhook is `active`.
    - `event_type` 'project.created' | 'project.updated' | 'time.entry.created' | 'time.entry.updated' | 'user.created' | 'user.updated' | 'assignment.created' | 'assignment.updated', required — The type of event associated with the webhook.
    - `organization_id` integer — Unique identifier for the organization.
    - `created_at` string, date-time — The time the webhook was created.
    - `updated_at` string, date-time — The time the webhook was last updated.
  - `paging` PagingMetadata
    - `per_page` integer — The maximum number of items to show per response page.
    - `page` integer — The current response page number.
    - `previous` string, nullable — If you're on the first page, this value is `null`; otherwise the value is the path and query parameters to get the previous page of items.
    - `self` string — The path and query parameters to get the current page of items.
    - `next` string, nullable — If there are more items, this value is the path and query parameters to get the next page of items; otherwise, it's `null`.
    - `count` integer, nullable — The total number of items in all the pages.

---

[API](https://skmtc.net/smartsheet/apis/resource-management-openapi-reference.md) · [All operations](https://skmtc.net/smartsheet/apis/resource-management-openapi-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/smartsheet/resource-management-openapi-reference/versions/e4c439ac13f2/schema)
