---
title: "User Organization Notification Methods List"
method: GET
path: "/user/organization-notification-methods/"
tags: ["users"]
---

# User Organization Notification Methods List

`GET /user/organization-notification-methods/`

List and create organization notification methods.

GET: List all notification methods for the current organization.
POST: Create a new notification method for the current organization.

SuperAdminMixin handles org + project_id auto-injection on POST.

## Query parameters

- `page` integer
- `page_size` integer

## Headers

- `Authorization` string, required

## Response `200`

- PaginatedOrganizationNotificationMethodListList
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `total_count` integer
  - `current_filters` FilterParamDictPydantic — Pydantic model for FilterParamDict. A dictionary that maps metric names to their filter parameters. Each key is a metric name (str), and each value can be: - A single MetricFilterParamPydantic (one condition) - A List[MetricFilterParamPydantic] (multiple conditions for same metric) - A FilterBundlePydantic (nested filter bundle with connector) Note: Uses extra="allow" for dynamic metric name fields. The __pydantic_extra__ annotation tells Pydantic what types to expect for extra fields, and generates typed additionalProperties in JSON Schema.
  - `filters_data` PaginatedOrganizationNotificationMethodListListFiltersData
  - `results` OrganizationNotificationMethodList[], required
    - `id` string, required
    - `notification_type` 'email' | 'slack' | 'microsoft_teams' | 'pagerduty' | 'webhook' | 'sms' | 'custom' | 'none' — * `email` - Email * `slack` - Slack * `microsoft_teams` - Microsoft Teams * `pagerduty` - Pagerduty * `webhook` - Webhook * `sms` - Sms * `custom` - Custom * `none` - None
    - `notification_config` union, required
      - EmailNotificationMethod
        - `email` string, required
        - `subject_prefix` string
        - `email_title` string
      - SlackNotificationMethod
        - `webhook_url` string
        - `headers` object
        - `method` string
        - `payload_format` string
        - `oauth_integration_id` string
        - `channel_id` string
        - `channel_name` string
        - `unique_organization_id` string
      - TeamsNotificationMethod — Posts to a Teams channel via a Workflows webhook or the Graph OAuth path. Teams addressing is two-level, so the OAuth branch requires BOTH ``team_id`` and ``channel_id`` (Slack's flat model needs only ``channel_id``). The webhook branch needs only ``webhook_url`` — its Workflows URL carries auth as a signature in the query string, so ``notification_target`` surfaces the host only for that path.
        - `webhook_url` string
        - `headers` object
        - `method` string
        - `payload_format` string
        - `oauth_integration_id` string
        - `team_id` string
        - `team_name` string
        - `channel_id` string
        - `channel_name` string
        - `unique_organization_id` string
      - WebhookNotificationMethod
        - `webhook_url` string, required
        - `headers` object
        - `method` string
        - `payload_format` string
      - PagerDutyNotificationMethod
        - `integration_key` string, required
        - `service_name` string
      - SMSNotificationMethod
        - `phone_number` string, required
        - `provider` string
      - CustomNotificationMethod
        - `webhook_url` string, required
        - `headers` object
        - `method` string
    - `unique_organization_id` string
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required

---

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