BigPanda Alert Filters API

Alert filters and filter schedules, in current and v1 routes, for suppressing alerts before correlation.

Operations 20

POST /resources/v1.0/plans Create an Alert Filter #
GET /resources/v1.0/plans Retrieve All Alert Filters #
POST /resources/v2.0/plans Create an Alert Filter #
GET /resources/v2.0/plans Retrieve All Alert Filters #
POST /resources/v1.0/schedules Create an Alert Filter Schedule #
GET /resources/v1.0/schedules Retrieve All Alert Filter Schedules #
POST /resources/v2.0/schedules Create an Alert Filter Schedule #
GET /resources/v2.0/schedules Retrieve All Alert Filter Schedules #
DELETE /resources/v1.0/plans/{filter_id} Delete an Alert Filter #
GET /resources/v1.0/plans/{filter_id} Retrieve an Alert Filter #
PATCH /resources/v1.0/plans/{filter_id} Update an Alert Filter #
DELETE /resources/v2.0/plans/{filter_id} Delete an Alert Filter #
GET /resources/v2.0/plans/{filter_id} Retrieve an Alert Filter #
PATCH /resources/v2.0/plans/{filter_id} Update an Alert Filter #
DELETE /resources/v1.0/schedules/{schedule_id} Delete an Alert Filter Schedule #
GET /resources/v1.0/schedules/{schedule_id} Retrieve an Alert Filter Schedule #
PATCH /resources/v1.0/schedules/{schedule_id} Update an Alert Filter Schedule #
DELETE /resources/v2.0/schedules/{schedule_id} Delete an Alert Filter Schedule #
GET /resources/v2.0/schedules/{schedule_id} Retrieve an Alert Filter Schedule #
PATCH /resources/v2.0/schedules/{schedule_id} Update an Alert Filter Schedule #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/bigpanda-alert-filters-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

bigpanda-alert-filters-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: BigPanda Alert Filters API
  description: BigPanda Alert Filters operations, assembled verbatim from the OpenAPI fragments BigPanda publishes on its
    own API reference at https://api-docs.bigpanda.io/. Each operation carries x-source-url naming the exact provider page
    it was read from. BigPanda hosts each organization in a single data management region (US or EU); send requests to the
    base URL for your region.
  version: 1.0.0
  contact:
    name: BigPanda Support
    url: https://api-docs.bigpanda.io/
  license:
    name: Proprietary
    url: https://www.bigpanda.io/legal/
  x-provenance:
    method: searched
    source: https://api-docs.bigpanda.io/llms.txt
    harvested: '2026-09-04'
    assembly: 'Operations copied verbatim from the per-endpoint OpenAPI 3.0.1 fragments BigPanda publishes at https://api-docs.bigpanda.io/<endpoint>.md.
      Assembly-only normalizations: Apidog x-apidog security metadata stripped, securityScheme type "bearer" corrected to
      type http/scheme bearer, schema name collisions suffixed. No operation, parameter, schema or response was authored by
      API Evangelist.'
    operations: 20
servers:
- url: https://api.bigpanda.io
  description: US Region
- url: https://api.eu.bigpanda.io
  description: EU Region
tags:
- name: Alert Filters
paths:
  /resources/v1.0/plans:
    post:
      summary: Create an Alert Filter
      deprecated: false
      description: "Creates a new alert filter.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda APIs require Bearer\
        \ Token Authorization in the call headers.\n>\n> This API uses the Organization token type of Authorization token.\
        \ Your org token must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n> `Authorization:\
        \ Bearer [YOUR_ORG_TOKEN]`\n\n**Rate limit:** 5 requests per second."
      operationId: v1-create-an-alert-filter
      tags:
      - Alert Filters
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alert_filter_object'
      responses:
        '201':
          x-apidog-ordering: 0
          description: '201'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alert_filter_return'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerOrg121: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770052-run
      x-source-url: https://api-docs.bigpanda.io/create-an-alert-filter-37770052e0.md
      x-source-page: Create an Alert Filter
    get:
      summary: Retrieve All Alert Filters
      deprecated: false
      description: "Retrieves the schema for all existing alert filters.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda\
        \ APIs require Bearer Token Authorization in the call headers.\n>\n> This API uses the Organization token type of\
        \ Authorization token. Your org token must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n\
        > `Authorization: Bearer [YOUR_ORG_TOKEN]`\n\n**Rate limit:** 5 requests per second."
      operationId: v1-retrieve-all-alert-filters
      tags:
      - Alert Filters
      parameters:
      - name: active
        in: query
        description: Whether to filter results to only active items.
        required: false
        example: ''
        schema:
          type: boolean
          default: true
          examples:
          - false
      responses:
        '200':
          x-apidog-ordering: 0
          description: '200'
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/alert_filter_return'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerOrg121: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770051-run
      x-source-url: https://api-docs.bigpanda.io/retrieve-all-alert-filters-37770051e0.md
      x-source-page: Retrieve All Alert Filters
  /resources/v2.0/plans:
    post:
      summary: Create an Alert Filter
      deprecated: false
      description: "Creates a new alert filter.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda APIs require Bearer\
        \ Token Authorization in the call headers.\n>\n> This API uses the User API Key type of Authorization token. Your\
        \ user API key must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n> `Authorization: Bearer\
        \ [YOUR_USER_API_KEY]`\n\n**Rate limit:** 5 requests per second."
      operationId: create-an-alert-filter
      tags:
      - Alert Filters
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alert_filter_object2'
      responses:
        '201':
          x-apidog-ordering: 0
          description: '201'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alert_filter_return2'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerUser131: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770062-run
      x-source-url: https://api-docs.bigpanda.io/create-an-alert-filter-37770062e0.md
      x-source-page: Create an Alert Filter
    get:
      summary: Retrieve All Alert Filters
      deprecated: false
      description: "Retrieves the schema for all existing alert filters.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda\
        \ APIs require Bearer Token Authorization in the call headers.\n>\n> This API uses the User API Key type of Authorization\
        \ token. Your user API key must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n> `Authorization:\
        \ Bearer [YOUR_USER_API_KEY]`\n\n**Rate limit:** 5 requests per second."
      operationId: retrieve-all-alert-filters
      tags:
      - Alert Filters
      parameters:
      - name: active
        in: query
        description: Whether to filter results to only active items.
        required: false
        example: ''
        schema:
          type: boolean
          default: true
          examples:
          - false
      responses:
        '200':
          x-apidog-ordering: 0
          description: '200'
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/alert_filter_return'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerUser131: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770061-run
      x-source-url: https://api-docs.bigpanda.io/retrieve-all-alert-filters-37770061e0.md
      x-source-page: Retrieve All Alert Filters
  /resources/v1.0/schedules:
    post:
      summary: Create an Alert Filter Schedule
      deprecated: false
      description: "Creates a new schedule.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda APIs require Bearer Token\
        \ Authorization in the call headers.\n>\n> This API uses the Organization token type of Authorization token. Your\
        \ org token must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n> `Authorization: Bearer\
        \ [YOUR_ORG_TOKEN]`\n\n**Rate limit:** 5 requests per second."
      operationId: v1-create-an-alert-filter-schedule
      tags:
      - Alert Filters
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alert_filter_schedule'
      responses:
        '200':
          x-apidog-ordering: 0
          description: '200'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alert_filter_return'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerOrg121: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770057-run
      x-source-url: https://api-docs.bigpanda.io/create-an-alert-filter-schedule-37770057e0.md
      x-source-page: Create an Alert Filter Schedule
    get:
      summary: Retrieve All Alert Filter Schedules
      deprecated: false
      description: "Retrieves the schema for all existing schedules.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda\
        \ APIs require Bearer Token Authorization in the call headers.\n>\n> This API uses the Organization token type of\
        \ Authorization token. Your org token must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n\
        > `Authorization: Bearer [YOUR_ORG_TOKEN]`\n\n**Rate limit:** 5 requests per second."
      operationId: v1-retrieve-all-alert-filter-schedules
      tags:
      - Alert Filters
      parameters: []
      responses:
        '200':
          x-apidog-ordering: 0
          description: '200'
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/alert_filter_schedule'
          headers: {}
          x-apidog-name: ''
        '400':
          x-apidog-ordering: 1
          description: '400'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/generic400response'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerOrg121: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770056-run
      x-source-url: https://api-docs.bigpanda.io/retrieve-all-alert-filter-schedules-37770056e0.md
      x-source-page: Retrieve All Alert Filter Schedules
  /resources/v2.0/schedules:
    post:
      summary: Create an Alert Filter Schedule
      deprecated: false
      description: "Creates a new schedule.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda APIs require Bearer Token\
        \ Authorization in the call headers.\n>\n> This API uses the User API Key type of Authorization token. Your user API\
        \ key must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n> `Authorization: Bearer [YOUR_USER_API_KEY]`\n\
        \n**Rate limit:** 5 requests per second."
      operationId: create-an-alert-filter-schedule
      tags:
      - Alert Filters
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alert_filter_schedule'
      responses:
        '200':
          x-apidog-ordering: 0
          description: '200'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alert_filter_return'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerUser131: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770067-run
      x-source-url: https://api-docs.bigpanda.io/create-an-alert-filter-schedule-37770067e0.md
      x-source-page: Create an Alert Filter Schedule
    get:
      summary: Retrieve All Alert Filter Schedules
      deprecated: false
      description: "Retrieves the schema for all existing schedules.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda\
        \ APIs require Bearer Token Authorization in the call headers.\n>\n> This API uses the User API Key type of Authorization\
        \ token. Your user API key must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n> `Authorization:\
        \ Bearer [YOUR_USER_API_KEY]`\n\n**Rate limit:** 5 requests per second."
      operationId: retrieve-all-alert-filter-schedules
      tags:
      - Alert Filters
      parameters: []
      responses:
        '200':
          x-apidog-ordering: 0
          description: '200'
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/alert_filter_schedule'
          headers: {}
          x-apidog-name: ''
        '400':
          x-apidog-ordering: 1
          description: '400'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/generic400response'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerUser131: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770066-run
      x-source-url: https://api-docs.bigpanda.io/retrieve-all-alert-filter-schedules-37770066e0.md
      x-source-page: Retrieve All Alert Filter Schedules
  /resources/v1.0/plans/{filter_id}:
    delete:
      summary: Delete an Alert Filter
      deprecated: false
      description: "Deletes an existing alert filter and removes it from the system.\n\n> \U0001F6A7 **Authentication**\n\
        > \n> All BigPanda APIs require Bearer Token Authorization in the call headers.\n>\n> This API uses the Organization\
        \ token type of Authorization token. Your org token must be provided in the header, prefixed by the word `Bearer`.\n\
        >\n> Example:\n> `Authorization: Bearer [YOUR_ORG_TOKEN]`\n\n**Rate limit:** 5 requests per second."
      operationId: v1-delete-an-alert-filter
      tags:
      - Alert Filters
      parameters:
      - name: filter_id
        in: path
        description: System id for the alert filter in BigPanda.
        required: true
        example: ''
        schema:
          type: string
          examples:
          - 312y23y3246y32
      responses:
        '204':
          x-apidog-ordering: 0
          description: '204'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/generic204response'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerOrg121: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770054-run
      x-source-url: https://api-docs.bigpanda.io/delete-an-alert-filter-37770054e0.md
      x-source-page: Delete an Alert Filter
    get:
      summary: Retrieve an Alert Filter
      deprecated: false
      description: "Retrieves the schema for an existing alert filter.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda\
        \ APIs require Bearer Token Authorization in the call headers.\n>\n> This API uses the Organization token type of\
        \ Authorization token. Your org token must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n\
        > `Authorization: Bearer [YOUR_ORG_TOKEN]`\n\n**Rate limit:** 5 requests per second."
      operationId: v1-retrieve-an-alert-filter
      tags:
      - Alert Filters
      parameters:
      - name: filter_id
        in: path
        description: System id for the alert filter in BigPanda.
        required: true
        example: ''
        schema:
          type: string
          examples:
          - 312y23y3246y32
      responses:
        '200':
          x-apidog-ordering: 0
          description: '200'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alert_filter_return'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerOrg121: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770053-run
      x-source-url: https://api-docs.bigpanda.io/retrieve-an-alert-filter-37770053e0.md
      x-source-page: Retrieve an Alert Filter
    patch:
      summary: Update an Alert Filter
      deprecated: false
      description: "Updates an existing alert filter.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda APIs require\
        \ Bearer Token Authorization in the call headers.\n>\n> This API uses the Organization token type of Authorization\
        \ token. Your org token must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n> `Authorization:\
        \ Bearer [YOUR_ORG_TOKEN]`\n\n**Rate limit:** 5 requests per second."
      operationId: v1-update-an-alert-filter
      tags:
      - Alert Filters
      parameters:
      - name: filter_id
        in: path
        description: System id for the alert filter in BigPanda.
        required: true
        example: ''
        schema:
          type: string
          examples:
          - 312y23y3246y32
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alert_filter_object'
      responses:
        '204':
          x-apidog-ordering: 0
          description: '204'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alert_filter_return'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerOrg121: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770055-run
      x-source-url: https://api-docs.bigpanda.io/update-an-alert-filter-37770055e0.md
      x-source-page: Update an Alert Filter
  /resources/v2.0/plans/{filter_id}:
    delete:
      summary: Delete an Alert Filter
      deprecated: false
      description: "Deletes an existing alert filter and removes it from the system.\n\n> \U0001F6A7 **Authentication**\n\
        > \n> All BigPanda APIs require Bearer Token Authorization in the call headers.\n>\n> This API uses the User API Key\
        \ type of Authorization token. Your user API key must be provided in the header, prefixed by the word `Bearer`.\n\
        >\n> Example:\n> `Authorization: Bearer [YOUR_USER_API_KEY]`\n\n**Rate limit:** 5 requests per second."
      operationId: delete-an-alert-filter
      tags:
      - Alert Filters
      parameters:
      - name: filter_id
        in: path
        description: System id for the alert filter in BigPanda.
        required: true
        example: ''
        schema:
          type: string
          examples:
          - 312y23y3246y32
      responses:
        '204':
          x-apidog-ordering: 0
          description: '204'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/generic204response'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerUser131: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770064-run
      x-source-url: https://api-docs.bigpanda.io/delete-an-alert-filter-37770064e0.md
      x-source-page: Delete an Alert Filter
    get:
      summary: Retrieve an Alert Filter
      deprecated: false
      description: "Retrieves the schema for an existing alert filter.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda\
        \ APIs require Bearer Token Authorization in the call headers.\n>\n> This API uses the User API Key type of Authorization\
        \ token. Your user API key must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n> `Authorization:\
        \ Bearer [YOUR_USER_API_KEY]`\n\n**Rate limit:** 5 requests per second."
      operationId: retrieve-an-alert-filter
      tags:
      - Alert Filters
      parameters:
      - name: filter_id
        in: path
        description: System id for the alert filter in BigPanda.
        required: true
        example: ''
        schema:
          type: string
          examples:
          - 312y23y3246y32
      responses:
        '200':
          x-apidog-ordering: 0
          description: '200'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alert_filter_return'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerUser131: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770063-run
      x-source-url: https://api-docs.bigpanda.io/retrieve-an-alert-filter-37770063e0.md
      x-source-page: Retrieve an Alert Filter
    patch:
      summary: Update an Alert Filter
      deprecated: false
      description: "Updates an existing alert filter.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda APIs require\
        \ Bearer Token Authorization in the call headers.\n>\n> This API uses the User API Key type of Authorization token.\
        \ Your user API key must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n> `Authorization:\
        \ Bearer [YOUR_USER_API_KEY]`\n\n**Rate limit:** 5 requests per second."
      operationId: update-an-alert-filter
      tags:
      - Alert Filters
      parameters:
      - name: filter_id
        in: path
        description: System id for the alert filter in BigPanda.
        required: true
        example: ''
        schema:
          type: string
          examples:
          - 312y23y3246y32
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alert_filter_object'
      responses:
        '204':
          x-apidog-ordering: 0
          description: '204'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alert_filter_return'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerUser131: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770065-run
      x-source-url: https://api-docs.bigpanda.io/update-an-alert-filter-37770065e0.md
      x-source-page: Update an Alert Filter
  /resources/v1.0/schedules/{schedule_id}:
    delete:
      summary: Delete an Alert Filter Schedule
      deprecated: false
      description: "Deletes an existing schedule and removes it from the system.\n\n> \U0001F6A7 **Authentication**\n> \n\
        > All BigPanda APIs require Bearer Token Authorization in the call headers.\n>\n> This API uses the Organization token\
        \ type of Authorization token. Your org token must be provided in the header, prefixed by the word `Bearer`.\n>\n\
        > Example:\n> `Authorization: Bearer [YOUR_ORG_TOKEN]`\n\n**Rate limit:** 5 requests per second."
      operationId: v1-delete-an-alert-filter-schedule
      tags:
      - Alert Filters
      parameters:
      - name: schedule_id
        in: path
        description: System id for the alert schedule in BigPanda.
        required: true
        example: ''
        schema:
          type: string
          examples:
          - 234y23yh3
      responses:
        '204':
          x-apidog-ordering: 0
          description: '204'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/generic204response'
          headers: {}
          x-apidog-name: ''
        '400':
          x-apidog-ordering: 1
          description: '400'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/generic400response'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerOrg121: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770059-run
      x-source-url: https://api-docs.bigpanda.io/delete-an-alert-filter-schedule-37770059e0.md
      x-source-page: Delete an Alert Filter Schedule
    get:
      summary: Retrieve an Alert Filter Schedule
      deprecated: false
      description: "Retrieves the schema for an existing schedule.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda\
        \ APIs require Bearer Token Authorization in the call headers.\n>\n> This API uses the Organization token type of\
        \ Authorization token. Your org token must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n\
        > `Authorization: Bearer [YOUR_USER_API_KEY]`\n\n**Rate limit:** 5 requests per second."
      operationId: v1-retrieve-an-alert-filter-schedule
      tags:
      - Alert Filters
      parameters:
      - name: schedule_id
        in: path
        description: System id for the alert schedule in BigPanda.
        required: true
        example: ''
        schema:
          type: string
          examples:
          - 234y23yh3
      responses:
        '200':
          x-apidog-ordering: 0
          description: Successful Operation
          content:
            application/json:
              schema:
                type: object
                x-apidog-orders: []
                properties: {}
          headers: {}
          x-apidog-name: ''
      security:
      - BearerOrg121: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770058-run
      x-source-url: https://api-docs.bigpanda.io/retrieve-an-alert-filter-schedule-37770058e0.md
      x-source-page: Retrieve an Alert Filter Schedule
    patch:
      summary: Update an Alert Filter Schedule
      deprecated: false
      description: "Updates an existing alert filter schedule.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda APIs\
        \ require Bearer Token Authorization in the call headers.\n>\n> This API uses the Organization token type of Authorization\
        \ token. Your org token must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n> `Authorization:\
        \ Bearer [YOUR_ORG_TOKEN]`\n\n**Rate limit:** 5 requests per second."
      operationId: v1-update-an-alert-filter-schedule
      tags:
      - Alert Filters
      parameters:
      - name: schedule_id
        in: path
        description: System id for the alert schedule in BigPanda.
        required: true
        example: ''
        schema:
          type: string
          examples:
          - 234y23yh3
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alert_filter_schedule'
      responses:
        '204':
          x-apidog-ordering: 0
          description: '204'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alert_filter_schedule_response'
          headers: {}
          x-apidog-name: ''
        '400':
          x-apidog-ordering: 1
          description: '400'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/generic400response'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerOrg121: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770060-run
      x-source-url: https://api-docs.bigpanda.io/update-an-alert-filter-schedule-37770060e0.md
      x-source-page: Update an Alert Filter Schedule
  /resources/v2.0/schedules/{schedule_id}:
    delete:
      summary: Delete an Alert Filter Schedule
      deprecated: false
      description: "Deletes an existing schedule and removes it from the system.\n\n> \U0001F6A7 **Authentication**\n> \n\
        > All BigPanda APIs require Bearer Token Authorization in the call headers.\n>\n> This API uses the User API Key type\
        \ of Authorization token. Your user API key must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n\
        > `Authorization: Bearer [YOUR_USER_API_KEY]`\n\n**Rate limit:** 5 requests per second."
      operationId: delete-an-alert-filter-schedule
      tags:
      - Alert Filters
      parameters:
      - name: schedule_id
        in: path
        description: System id for the alert schedule in BigPanda.
        required: true
        example: ''
        schema:
          type: string
          examples:
          - 234y23yh3
      responses:
        '204':
          x-apidog-ordering: 0
          description: '204'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/generic204response'
          headers: {}
          x-apidog-name: ''
        '400':
          x-apidog-ordering: 1
          description: '400'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/generic400response'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerUser131: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770069-run
      x-source-url: https://api-docs.bigpanda.io/delete-an-alert-filter-schedule-37770069e0.md
      x-source-page: Delete an Alert Filter Schedule
    get:
      summary: Retrieve an Alert Filter Schedule
      deprecated: false
      description: "Retrieves the schema for an existing schedule.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda\
        \ APIs require Bearer Token Authorization in the call headers.\n>\n> This API uses the User API Key type of Authorization\
        \ token. Your user API key must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n> `Authorization:\
        \ Bearer [YOUR_USER_API_KEY]`\n\n**Rate limit:** 5 requests per second."
      operationId: retrieve-an-alert-filter-schedule
      tags:
      - Alert Filters
      parameters:
      - name: schedule_id
        in: path
        description: System id for the alert schedule in BigPanda.
        required: true
        example: ''
        schema:
          type: string
          examples:
          - 234y23yh3
      responses:
        '200':
          x-apidog-ordering: 0
          description: Successful Operation
          content:
            application/json:
              schema:
                type: object
                x-apidog-orders: []
                properties: {}
          headers: {}
          x-apidog-name: ''
      security:
      - BearerUser131: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770068-run
      x-source-url: https://api-docs.bigpanda.io/retrieve-an-alert-filter-schedule-37770068e0.md
      x-source-page: Retrieve an Alert Filter Schedule
    patch:
      summary: Update an Alert Filter Schedule
      deprecated: false
      description: "Updates an existing alert filter schedule.\n\n> \U0001F6A7 **Authentication**\n> \n> All BigPanda APIs\
        \ require Bearer Token Authorization in the call headers.\n>\n> This API uses the User API Key type of Authorization\
        \ token. Your user API key must be provided in the header, prefixed by the word `Bearer`.\n>\n> Example:\n> `Authorization:\
        \ Bearer [YOUR_USER_API_KEY]`\n\n**Rate limit:** 5 requests per second."
      operationId: update-an-alert-filter-schedule
      tags:
      - Alert Filters
      parameters:
      - name: schedule_id
        in: path
        description: System id for the alert schedule in BigPanda.
        required: true
        example: ''
        schema:
          type: string
          examples:
          - 234y23yh3
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alert_filter_schedule'
      responses:
        '204':
          x-apidog-ordering: 0
          description: '204'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alert_filter_schedule_response'
          headers: {}
          x-apidog-name: ''
        '400':
          x-apidog-ordering: 1
          description: '400'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/generic400response'
          headers: {}
          x-apidog-name: ''
      security:
      - BearerUser131: []
      x-publication-status: live
      x-run-in-apidog: https://app.apidog.com/web/project/1203004/apis/api-37770070-run
      x-source-url: https://api-docs.bigpanda.io/update-an-alert-filter-schedule-37770070e0.md
      x-source-page: Update an Alert Filter Schedule
components:
  securitySchemes:
    BearerOrg121:
      type: http
      scheme: bearer
      description: 'Format: "Bearer {Org Token}" BigPanda recommends adding

        [Authentication](https://docs.bigpanda

# --- truncated at 32 KB (44 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/bigpanda/refs/heads/main/openapi/bigpanda-alert-filters-api-openapi.yml