---
title: "List webhooks"
method: GET
path: "/api/mail/v1/orders/{orderId}/webhooks"
tags: ["Mail: Webhooks"]
---

# List webhooks

`GET /api/mail/v1/orders/{orderId}/webhooks`

Retrieve a paginated list of webhooks belonging to the given mail
order. Supports filtering by mailbox and status. The webhook secret
is never included; it is returned only when a webhook is created or
its secret is regenerated.

## Path parameters

- `orderId` string, required

## Query parameters

- `mailbox_id` string, nullable
- `status` 'active' | 'disabled' | 'paused', nullable
- `page` integer
- `per_page` integer

## Response `200`

Success response

- object
  - `data` MailV1WebhooksWebhookResource[] — Array of [`Mail.V1.Webhooks.WebhookResource`](#model/mailv1webhookswebhookresource)
    - `id` string — Unique webhook identifier
    - `mailbox` MailV1WebhooksWebhookMailboxResource
      - `id` string
      - `address` string
    - `name` string — Human-readable name for this webhook
    - `description` string, nullable — Optional description of the webhook's purpose
    - `events` string[] — Events that trigger this webhook
    - `status` 'active' | 'disabled' | 'paused' — Current status of the webhook
    - `url` string — URL that receives webhook POST requests
    - `created_at` string, date-time
    - `updated_at` string, date-time
  - `meta` CommonSchemaPaginationMetaSchema
    - `current_page` integer
    - `per_page` integer
    - `total` integer

## Other responses

- `401` — Unauthenticated response
- `404` — Error response
- `422` — Error response
- `500` — Error response

---

[API](https://skmtc.dev/hostinger/apis/hostinger-api.md) · [All operations](https://skmtc.dev/hostinger/apis/hostinger-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hostinger/hostinger-api/revisions/53ccee45e5eb/schema)
