---
title: "Retrieve request ignored events"
method: GET
path: "/requests/{id}/ignored_events"
tags: ["Requests"]
---

# Retrieve request ignored events

`GET /requests/{id}/ignored_events`

This endpoint retrieves all events that were ignored (filtered out) for the specified request.

## Path parameters

- `id` string, required — Request ID

## Query parameters

- `id` union — Filter by ignored events IDs
  - string — Request ID
  - string[]
- `order_by` union — Sort key(s)
  - 'created_at'
  - string[]
- `dir` union — Sort direction(s)
  - 'asc' | 'desc'
  - string[]
- `limit` integer — Result set size
- `next` string — The ID to provide in the query to get the next set of results
- `prev` string — The ID to provide in the query to get the previous set of results

## Response `200`

List of ignored events

- IgnoredEventPaginatedResult
  - `pagination` SeekPagination
    - `order_by` union
      - string
      - string[]
    - `dir` union
      - union
        - 'asc'
        - 'desc'
        - 'ASC'
        - 'DESC'
      - OrderByDirection[]
        - union
          - 'asc'
          - 'desc'
          - 'ASC'
          - 'DESC'
    - `limit` integer
    - `prev` string
    - `next` string
  - `count` integer
  - `models` IgnoredEvent[]
    - `id` string, required
    - `team_id` string, required — ID of the project
    - `webhook_id` string, required — ID of the associated connection (webhook)
    - `cause` 'DISABLED' | 'FILTERED' | 'TRANSFORMATION_FAILED' | 'CLI_DISCONNECTED', required
    - `request_id` string, required
    - `meta` union
      - string[]
      - TransformationFailedMeta
        - `transformation_id` string, required
    - `created_at` string, date-time, required

## Other responses

- `400` — Bad Request
- `404` — Not Found
- `422` — Unprocessable Entity

---

[API](https://skmtc.dev/hookdeck/apis/hookdeck-admin-rest-api.md) · [All operations](https://skmtc.dev/hookdeck/apis/hookdeck-admin-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hookdeck/hookdeck-admin-rest-api/revisions/091808eac7fa/schema)
