---
title: "List all webhooks in project"
method: GET
path: "/v1/projects/{projectId}/webhooks"
tags: ["Webhooks"]
---

# List all webhooks in project

`GET /v1/projects/{projectId}/webhooks`

Returns a paginated list of webhooks for the specified project. If no page token is supplied then all registered webhooks (of maximum `15`) are returned in alphabetical order.

## Path parameters

- `projectId` string, required

## Query parameters

- `pageToken` string
- `pageSize` number

## Response `200`

List of webhooks

- WebhookWebhookListDto
  - `totalSize` number, required — Total size of the entries matching the search query.
  - `pageSize` number, required — Requested size of the page.
  - `previousPageToken` string — Encoded token to use in list request to fetch previous batch of entries.
  - `nextPageToken` string — Encoded token to use in list request to fetch next batch of entries.
  - `webhooks` WebhookWebhookDto[], required
    - `id` string, required — The ID of the webhook.
    - `target` string, required — The target url where events will be sent to.
    - `projectId` string, required — The project that this webhook belongs to.
    - `triggers` string[], required — List of triggers this webhook is triggered by.

## Other responses

- `400` — BadRequest
- `401` — Unauthorized
- `500` — InternalServerError

---

[API](https://skmtc.net/sinch/apis/provisioning-api.md) · [All operations](https://skmtc.net/sinch/apis/provisioning-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sinch/provisioning-api/revisions/c78a716de420/schema)
