> ## Documentation Index
> Fetch the complete documentation index at: https://docs.komerza.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Webhook Logs

> Searches logs by log ID, order ID (if the query is a valid GUID), or by URL fragment.
All pagination and date/status filters from the listing endpoint are also supported.
Requires the `user.webhooks.view` permission.

## Filterable Fields

This endpoint supports filtering and sorting. See the [Filtering & Sorting Guide](/api-reference/filtering) for syntax details.

| Field          | Type    | Description                                                                       |
| -------------- | ------- | --------------------------------------------------------------------------------- |
| `success`      | boolean | Whether the delivery succeeded (a 2xx response)                                   |
| `responseCode` | integer | The HTTP status your endpoint returned. `-1` means paused after repeated failures |

**Example:**

```bash theme={null}
# Failed deliveries only
GET /webhooks/{webhookId}/logs?filters=success==false

# Deliveries your endpoint rejected as unauthorised
GET /webhooks/{webhookId}/logs?filters=responseCode==401
```


## API Specification

The full API specification for this endpoint is available in the [documentation index](https://docs.komerza.com/llms.txt).
