---
title: "List all Notifications Events Conditions"
method: GET
path: "/notification_event_conditions"
tags: ["Notifications"]
---

# List all Notifications Events Conditions

`GET /notification_event_conditions`

Returns a list of your notifications events conditions.

## Query parameters

- `filter` object
  - `associated_record_type` object
    - `eq` 'account' | 'phone_number' — Filter by the associated record type
  - `channel_type_id` object
    - `eq` 'webhook' | 'sms' | 'email' | 'voice' — Filter by the id of a channel type
  - `notification_profile_id` object
    - `eq` string — Filter by the id of a notification profile
  - `notification_channel` object
    - `eq` string — Filter by the id of a notification channel
  - `notification_event_condition_id` object
    - `eq` string — Filter by the id of a notification channel
  - `status` object
    - `eq` 'enabled' | 'enable-received' | 'enable-pending' | 'enable-submtited' | 'delete-received' | 'delete-pending' | 'delete-submitted' | 'deleted' — The status of a notification setting
- `page[number]` integer
- `page[size]` integer

## Response `200`

Returns a list of notification event conditions available.

- object
  - `data` NotificationEventCondition[]
    - `id` string — A UUID.
    - `name` string
    - `description` string
    - `notification_event_id` string
    - `associated_record_type` 'account' | 'phone_number'
    - `parameters` object[]
      - `name` string
      - `optional` boolean
      - `data_type` string
    - `enabled` boolean
    - `allow_multiple_channels` boolean — Dictates whether a notification channel id needs to be provided when creating a notficiation setting.
    - `asynchronous` boolean — Dictates whether a notification setting will take effect immediately.
    - `supported_channels` string[] — Dictates the supported notification channel types that can be emitted.
    - `created_at` string, date-time — ISO 8601 formatted date indicating when the resource was created.
    - `updated_at` string, date-time — ISO 8601 formatted date indicating when the resource was updated.
  - `meta` PaginationMeta
    - `total_pages` integer, required
    - `total_results` integer
    - `page_number` integer, required
    - `page_size` integer

## Other responses

- `400` — Bad request, the request was unacceptable, often due to missing a required parameter.
- `422` — Unprocessable entity. Check the 'detail' field in response for details.
- `500` — Unexpected error

---

[API](https://skmtc.net/team-telnyx/apis/telnyx-api.md) · [All operations](https://skmtc.net/team-telnyx/apis/telnyx-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/team-telnyx/telnyx-api/versions/e32d46c5945b/schema)
