Everbridge Notifications API

EB Suites - Notifications Management

Business capability
Crisis Communications Management BC-850.50

Operations 8

GET /notificationEvents/{organizationId} List Notification Events #
POST /notificationEvents/{organizationId} Create Notification Event #
GET /notificationEvents/{organizationId}/{notificationEventId} Get Notification Event #
POST /notifications/push/{organizationId} Launch Push Notification #
GET /notifications/{organizationId} List Mass Notifications #
POST /notifications/{organizationId} Launch Mass Notification #
GET /notifications/{organizationId}/{notificationId} Get Notification #
PUT /notifications/{organizationId}/{notificationId} Update Notification #

Documentation

📖
Documentation
https://developers.everbridge.net/home/docs/overview
📖
APIReference
https://developers.everbridge.net/home/reference
📖
GettingStarted
https://developers.everbridge.net/home/docs/ebs-gs-guide
📖
Authentication
https://developers.everbridge.net/home/docs/ebs-gs-guide-authentication-types
📖
APIReference
https://developers.everbridge.net/home/reference/generate-token
📖
APIReference
https://developers.everbridge.net/home/reference/comms-apis
📖
APIReference
https://developers.everbridge.net/home/reference/authorization
📖
GettingStarted
https://developers.everbridge.net/home/docs/notifications
📖
APIReference
https://developers.everbridge.net/home/reference/cema-query-public
📖
APIReference
https://developers.everbridge.net/home/reference/cema-query-stream-1
📖
APIReference
https://developers.everbridge.net/home/reference/assets
📖
APIReference
https://developers.everbridge.net/home/reference/assets-query
📖
APIReference
https://developers.everbridge.net/home/reference/travel-risk-intelligence
📖
APIReference
https://developers.everbridge.net/home/reference/checks
📖
APIReference
https://developers.everbridge.net/home/reference/risk-events
📖
APIReference
https://developers.everbridge.net/home/reference/safety-devices-event
📖
APIReference
https://developers.everbridge.net/home/reference/snapcomms-authentication
📖
GettingStarted
https://support.snapcomms.com/hc/en-us/articles/19361020051867-Integration-Through-API-Overview

Specifications

Other Resources

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/everbridge-notifications-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

everbridge-notifications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: EB Suite APIs.
  title: EB Suite Notifications API
  version: '1.0'
servers:
- url: https://api.everbridge.net/rest
- url: https://api.everbridge.eu/rest
tags:
- description: EB Suites - Notifications Management
  name: Notifications
paths:
  /notificationEvents/{organizationId}:
    get:
      deprecated: false
      description: Retrieve all notification events for an organization
      operationId: List Notification Events
      parameters:
      - description: The ID of the organization containing the notificationEvents
        in: path
        name: organizationId
        required: true
        schema:
          $ref: '#/components/schemas/organizationId'
      responses:
        '200':
          content:
            application/json:
              examples:
                success:
                  summary: success
                  value:
                    firstPageUri: https://api-dev3.everbridge.net/rest/notificationEvents/1536984111644674?pageNumber=1
                    lastPageUri: https://api-dev3.everbridge.net/rest/notificationEvents/1536984111644674?pageNumber=1
                    message: OK
                    page:
                      currentPageNo: 1
                      data:
                      - accountId: 0
                        createdDate: 1719302431410
                        createdId: 2200330536222721
                        createdName: Nandish API Access
                        id: 2357320180826114
                        lastModifiedDate: 1719302431410
                        lastModifiedId: 2200330536222721
                        lastModifiedName: Nandish API Access
                        name: Test Event 1719302430
                        organizationId: 1536984111644674
                        resourceBundleId: 0
                        status: A
                      pageSize: 15
                      start: 1
                      totalCount: 15
                      totalPageCount: 1
              schema:
                $ref: '#/components/schemas/RestfulCollectionResult'
          description: OK
        '400':
          description: Missing or invalid request input
        '401':
          description: Invalid or missing credentials
        '500':
          description: Internal Error
      security:
      - API_Authorizer: []
      - BasicAuth: []
      - api_key: []
      summary: List Notification Events
      tags:
      - Notifications
      x-amazon-apigateway-integration:
        httpMethod: GET
        passthroughBehavior: when_no_match
        requestParameters:
          integration.request.path.organizationId: method.request.path.organizationId
        responses:
          default:
            statusCode: '200'
        type: http_proxy
        uri: https://ebs-restapi-prod-us.evbg.io/rest/notificationEvents/{organizationId}
    post:
      deprecated: false
      description: Create a new notification event within an organization
      operationId: Create Notification Event
      parameters:
      - description: The ID of the organization containing the notificationEvents
        in: path
        name: organizationId
        required: true
        schema:
          $ref: '#/components/schemas/organizationId'
      requestBody:
        content:
          application/json:
            examples:
              basic:
                summary: basic
                value:
                  name: pre-test
            schema:
              $ref: '#/components/schemas/NotificationEventWrapper'
        required: true
      responses:
        '200':
          content:
            application/json:
              examples:
                success:
                  summary: ''
                  value:
                    baseUri: https://api-dev3.everbridge.net/rest/notificationEvents/1536984111644674
                    id: 3385878948872193
                    instanceUri: https://api-dev3.everbridge.net/rest/notificationEvents/1536984111644674/3385878948872193
                    message: OK
              schema:
                $ref: '#/components/schemas/RestfulModificationResult'
          description: OK
        '400':
          description: Missing or invalid request input
        '401':
          description: Invalid or missing credentials
        '500':
          description: Internal Error
      security:
      - API_Authorizer: []
      - BasicAuth: []
      - api_key: []
      summary: Create Notification Event
      tags:
      - Notifications
      x-amazon-apigateway-integration:
        httpMethod: POST
        passthroughBehavior: when_no_match
        requestParameters:
          integration.request.path.organizationId: method.request.path.organizationId
        responses:
          default:
            statusCode: '200'
        type: http_proxy
        uri: https://ebs-restapi-prod-us.evbg.io/rest/notificationEvents/{organizationId}
  /notificationEvents/{organizationId}/{notificationEventId}:
    get:
      deprecated: false
      description: Retrieve a specific notification event
      operationId: Get Notification Event
      parameters:
      - description: The ID of the organization in which to find the notificationEvent
        in: path
        name: organizationId
        required: true
        schema:
          $ref: '#/components/schemas/organizationId'
      - description: The ID of the notificationEvent
        in: path
        name: notificationEventId
        required: true
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              examples:
                success:
                  summary: basic
                  value:
                    accountId: 0
                    createdDate: 1718187982828
                    createdId: 2200330536222721
                    createdName: Nandish API Access
                    id: 2357320180826113
                    lastModifiedDate: 1718187982828
                    lastModifiedId: 2200330536222721
                    lastModifiedName: Nandish API Access
                    lastModifiedProxyName: string
                    name: string
                    organizationId: 1536984111644674
                    resourceBundleId: 0
                    status: A
              schema:
                $ref: '#/components/schemas/RestfulInstanceResult'
          description: OK
        '400':
          description: Missing or invalid request input
        '401':
          description: Invalid or missing credentials
        '500':
          description: Internal Error
      security:
      - API_Authorizer: []
      - BasicAuth: []
      - api_key: []
      summary: Get Notification Event
      tags:
      - Notifications
      x-amazon-apigateway-integration:
        httpMethod: GET
        passthroughBehavior: when_no_match
        requestParameters:
          integration.request.path.notificationEventId: method.request.path.notificationEventId
          integration.request.path.organizationId: method.request.path.organizationId
        responses:
          default:
            statusCode: '200'
        type: http_proxy
        uri: https://ebs-restapi-prod-us.evbg.io/rest/notificationEvents/{organizationId}/{notificationEventId}
  /notifications/push/{organizationId}:
    post:
      description: Initiate an immediate push notification.  To launch incident notification, see [Launch Incident](https://developers.everbridge.net/home/reference/ebs-launch-incident)
      operationId: EBS Launch Push Notification
      parameters:
      - in: path
        name: organizationId
        required: true
        schema:
          $ref: '#/components/schemas/organizationId'
      requestBody:
        content:
          application/json:
            examples: {}
            schema: {}
        required: true
      responses:
        '200':
          content:
            application/json:
              examples:
                Default:
                  summary: Created
                  value:
                    baseUri: https://api-dev3.everbridge.net/rest/notifications/1536984111644674/
                    id: 624558574927948
                    instanceUri: https://api-dev3.everbridge.net/rest/notifications/1536984111644674/624558574927948
                    message: OK
              schema:
                properties:
                  baseUri:
                    description: API endpoint base URL.  You must append notificationId to retrieve the notification.
                    type: string
                  id:
                    description: Notification ID of the created notification.
                    type: string
                  instanceUri:
                    description: API endpoint which can be used to return the notification details.
                    type: string
                  message:
                    description: Returns status (OK).
                    type: string
                type: object
          description: Created
        '400':
          content:
            application/json:
              examples:
                Default:
                  summary: Validation Error
                  value:
                    message: Invalid source template id.
                    status: 400
              schema:
                properties:
                  message:
                    description: Error message
                    enum:
                    - Invalid source template id
                    type: string
                  status:
                    description: "Request Status\n * 400: Validation Error\n * 500: Unexpected Error"
                    type: string
                type: object
          description: Bad Request
      security:
      - API_Authorizer: []
      - BasicAuth: []
      - api_key: []
      summary: Launch Push Notification
      tags:
      - Notifications
      x-amazon-apigateway-integration:
        httpMethod: POST
        passthroughBehavior: when_no_match
        requestParameters:
          integration.request.path.organizationId: method.request.path.organizationId
        responses:
          default:
            statusCode: '200'
        type: http_proxy
        uri: https://ebs-restapi-prod-us.evbg.io/rest/notifications/push/{organizationId}
  /notifications/{organizationId}:
    get:
      description: Retrieve all notifications at the org level.  Please note that this API only returns Mass Notifications and not [Incident Notifications](https://developers.everbridge.net/home/reference/ebs-list-incident-notifications).
      operationId: EBS List Mass Notifications
      parameters:
      - in: path
        name: organizationId
        required: true
        schema:
          $ref: '#/components/schemas/organizationId'
      - description: 'Boolean value indicating whether only active broadcasts should be returned. Default value: false'
        in: query
        name: onlyActive
        required: false
        schema:
          enum:
          - 'false'
          - 'true'
          type: string
      - description: Returns notifications for a given notification event
        in: query
        name: notificationEventId
        required: false
        schema:
          default: '-1'
          type: integer
      - in: query
        name: pageNumber
        required: false
        schema:
          example: 1
          type: string
      responses:
        '200':
          content:
            application/json:
              examples:
                Success:
                  summary: Default
                  value:
                    firstPageUri: https://api-dev3.everbridge.net/rest/notifications/1536984111644674/?pageNumber=1
                    lastPageUri: https://api-dev3.everbridge.net/rest/notifications/1536984111644674/?pageNumber=2
                    message: OK
                    nextPageUri: https://api-dev3.everbridge.net/rest/notifications/1536984111644674/?pageNumber=2
                    page:
                      currentPageNo: 1
                      data:
                      - accountId: 1536846672691202
                        batchNotificationId: 0
                        broadcastSettings:
                          bookConference: false
                          confirm: true
                          contactCycles: 1
                          cycleInterval: 0
                          deliverPaths:
                          - accountId: 1536846672691202
                            awarePathId: 0
                            createdDate: 1674823177533
                            createdId: 1530249602924607
                            createdName: Vishal Agrawal
                            default: true
                            displayFlag: false
                            editable: false
                            expose: false
                            extRequired: false
                            id: 589820879437825
                            isDefault: true
                            lastModifiedDate: 1674823192141
                            lastModifiedId: 1530249602924607
                            lastModifiedName: Vishal Agrawal
                            mandatory: false
                            organizationId: 1536984111644674
                            pathId: 241901148045316
                            prompt: Email
                            resourceBundleId: 1536984111644675
                            seq: 1
                            status: A
                          deliveryMethodInterval: 0
                          deliveryPathOrder: Contact
                          duration: 1
                          durationTimeUnit: HOURS
                          enableBeep: true
                          enableRecord: false
                          enableSecureNotification: false
                          enableSmartConferenceConfirmationText: true
                          language: en_US
                          quietTimeOverride: false
                          recipientApp: false
                          requirePinForMessage: false
                          senderCallerInfos:
                          - accountId: 0
                            callerId: '7818646213'
                            countryCode: US
                            countryName: United States
                            createdDate: 1637777082188
                            createdId: 565290710597634
                            createdName: Ajay Goel
                            id: 1536984111644674
                            isDefault: true
                            lastModifiedDate: 1637777082188
                            lastModifiedId: 565290710597634
                            lastModifiedName: Ajay Goel
                            organizationId: 1536984111644674
                            resourceBundleId: 233109349990401
                            status: A
                          senderEmail: Internal Training (Dev3)
                          smsCallBack: false
                          throttlDefaultAmount: 0
                          throttle: false
                          validateContacts: true
                          validateContactsByOrganization: false
                          voiceMailOption: MESSAGE_WITH_CONFIRMATION
                        createdDate: 1675782973741
                        createdId: 1530249602924607
                        createdName: Vishal Agrawal
                        enableLifeSafety: false
                        enableMessageTruncate: false
                        endDate: 1675786573786
                        escalatedNotification: false
                        escalationConfirmedCount: 0
                        hasNotification: true
                        id: 609886966644738
                        lastModifiedDate: 1675786590068
                        lastModifiedId: 1530249602924607
                        lastModifiedName: Vishal Agrawal
                        launchtype: SendNow
                        message:
                          accountId: 0
                          conferenceBridgeId: 0
                          contentType: Text
                          createdId: 0
                          id: 0
                          lastModifiedId: 0
                          organizationId: 0
                          questionaire:
                            answers:
                            - name: I am safe
                              quotaNum: 0
                            - name: Am in danger
                              quotaNum: 0
                            inputOptionAllowable: false
                            multipleSelected: false
                            required: false
                          resourceBundleId: 0
                          rtfContent: <b>This is an emergency notification!<b>
                          textMessage: How are you?
                          title: Polling message from the API 4
                          useCustomEmail: true
                          useCustomSms: false
                        notificationMode: Live
                        notificationResult:
                          confirmedCount: 0
                          confirmedLateCount: 0
                          notConfirmedCount: 1
                          notificationId: 609886966644738
                          pollingDetails:
                          - count: 1
                            quotaNum: 0
                            responseText: Not Confirmed
                          - count: 0
                            quotaNum: 0
                            responseText: Unreachable
                          - count: 0
                            quotaNum: 0
                            responseText: Invalid Response
                          - count: 0
                            quotaNum: 0
                            responseText: I am safe
                          - count: 0
                            quotaNum: 0
                            responseText: Am in danger
                          totalCount: 1
                          unreachableCount: 0
                        notificationStatus: Completed
                        oldAwareCAMPID: 0
                        organizationId: 1536984111644674
                        priority: NonPriority
                        processedBy: schedule-task-dev3-blue-i-06174345d96d44b8d
                        productSource: MNIV
                        publicMessages: {}
                        resourceBundleId: 0
                        source: Api
                        startDate: 1675782973786
                        status: A
                        stoppedBy: 0
                        transformed: false
                        type: Polling
                      - accountId: 1536846672691202
                        batchNotificationId: 0
                        broadcastSettings:
                          bookConference: false
                          confirm: false
                          contactCycles: 1
                          cycleInterval: 0
                          deliverPaths:
                          - accountId: 1536846672691202
                            awarePathId: 0
                            createdDate: 1674823177533
                            createdId: 1530249602924607
                            createdName: Vishal Agrawal
                            default: true
                            displayFlag: false
                            editable: false
                            expose: false
                            extRequired: false
                            id: 589820879437825
                            isDefault: true
                            lastModifiedDate: 1674823192141
                            lastModifiedId: 1530249602924607
                            lastModifiedName: Vishal Agrawal
                            mandatory: false
                            organizationId: 1536984111644674
                            pathId: 241901148045316
                            prompt: Email
                            resourceBundleId: 1536984111644675
                            seq: 1
                            status: A
                          deliveryMethodInterval: 0
                          deliveryPathOrder: Contact
                          duration: 1
                          durationTimeUnit: HOURS
                          enableBeep: true
                          enableRecord: false
                          enableSecureNotification: false
                          enableSmartConferenceConfirmationText: true
                          language: en_US
                          mobileSettings:
                            allowShare: false
                            pushAlertEnabled: false
                            requestComment: false
                            requestImage: false
                            requestLocation: false
                            requireConfirm: false
                          quietTimeOverride: false
                          recipientApp: false
                          requirePinForMessage: false
                          senderCallerInfos:
                          - accountId: 0
                            callerId: '7818646213'
                            countryCode: US
                            countryName: United States
                            createdId: 0
                            id: 0
                            isDefault: true
                            lastModifiedId: 0
                            organizationId: 0
                            resourceBundleId: 0
                          senderEmail: Internal Training (Dev3)
                          throttlDefaultAmount: 0
                          throttle: false
                          validateContacts: true
                          validateContactsByOrganization: false
                          voiceMailOption: MESSAGE_ONLY
                        createdDate: 1675776032835
                        createdId: 1530249602924607
                        createdName: Vishal Agrawal
                        enableLifeSafety: false
                        enableMessageTruncate: false
                        endDate: 1675779632898
                        escalatedNotification: false
                        escalationConfirmedCount: 0
                        hasNotification: true
                        id: 595387157054054
                        lastModifiedDate: 1675779660062
                        lastModifiedId: 1530249602924607
                        lastModifiedName: Vishal Agrawal
                        launchtype: SendNow
                        message:
                          accountId: 0
                          conferenceBridgeId: 0
                          contentType: Text
                          createdId: 0
                          id: 0
                          lastModifiedId: 0
                          organizationId: 0
                          resourceBundleId: 0
                          textMessage: New Notification
                          title: New Notification
                          useCustomEmail: false
                          useCustomSms: false
                        notificationMode: Live
                        notificationResult:
                          confirmedCount: 0
                          confirmedLateCount: 0
                          notConfirmedCount: 1
                          notificationId: 595387157054054
                          totalCount: 1
                          unreachableCount: 0
                        notificationStatus: Completed
                        oldAwareCAMPID: 0
                        organizationId: 1536984111644674
                        priority: NonPriority
                        processedBy: schedule-task-dev3-blue-i-06174345d96d44b8d
                        productSource: MNIV
                        publicMessages: {}
                        resourceBundleId: 1536984111644675
                        source: Web
                        startDate: 1675776032898
                        status: A
                        stoppedBy: 0
                        transformed: true
                        type: Standard
                      - accountId: 1536846672691202
                        batchNotificationId: 0
                        broadcastSettings:
                          bookConference: false
                          confirm: true
                          contactCycles: 1
                          cycleInterval: 0
                          deliverPaths:
                          - accountId: 1536846672691202
                            awarePathId: 0
                            createdDate: 1674823177533
                            createdId: 1530249602924607
                            createdName: Vishal Agrawal
                            default: true
                            displayFlag: false
                            editable: false
                            expose: false
                            extRequired: false
                            id: 589820879437825
                            isDefault: true
                            lastModifiedDate: 1674823192141
                            lastModifiedId: 1530249602924607
                            lastModifiedName: Vishal Agrawal
                            mandatory: false
                            organizationId: 1536984111644674
                            pathId: 241901148045316
                            prompt: Email
                            resourceBundleId: 1536984111644675
                            seq: 1
                            status: A
                          deliveryMethodInterval: 0
                          deliveryPathOrder: Contact
                          duration: 1
                          durationTimeUnit: HOURS
                          enableBeep: true
                          enableRecord: false
                          enableSecureNotification: false
                          enableSmartConferenceConfirmationText: true
                          language: en_US
                          mobileSettings:
                            allowShare: false
                            pushAlertEnabled: false
                            requestComment: false
                            requestImage: false
                            requestLocation: false
                            requireConfirm: false
                          quietTimeOverride: false
                          recipientApp: false
                          requirePinForMessage: false
                          senderCallerInfos:
                          - accountId: 0
                            callerId: '7818646213'
                            countryCode: US
                            countryName: United States
                            createdId: 0
                            id: 0
                            isDefault: true
                            lastModifiedId: 0
                            organizationId: 0
                            resourceBundleId: 0
                          senderEmail: Internal Training (Dev3)
                          smsCallBack: false
                          throttlDefaultAmount: 0
                          throttle: false
                          validateContacts: true
                          validateContactsByOrganization: false
                          voiceMailOption: MESSAGE_WITH_CONFIRMATION
                        categoryId: 594253285687298
                        createdDate: 1675775057924
                        createdId: 1530249602924607
                        createdName: Vishal Agrawal
                        enableLifeSafety: false
                        enableMessageTruncate: false
                        endDate: 1675778658143
                        escalatedNotification: false
                        escalationConfirmedCount: 0
                        hasNotification: true
                        id: 595696394699033
                        lastModifiedDate: 1675778670038
                        lastModifiedId: 1530249602924607
                        lastModifiedName: Vishal Agrawal
                        launchtype: SendNow
                        message:
                          accountId: 0
                          category:
                            accountId: 1536846672691202
                            createdDate: 1675437422375
                            createdId: 585800790048776
                            createdName: Ajay Goel
                            id: 594253285687298
                            lastModifiedDate: 1675437422375
                            lastModifiedId: 585800790048776
                            lastModifiedName: Ajay Goel
                            name: MN Category 2
                            organizationId: 1536984111644674
                            resourceBundleId: 1536984111644675
                            status: A
                          categoryId: 594253285687298
                          conferenceBridgeId: 0
                          contentType: Text
                          createdId: 0
                          id: 0
                          lastModifiedId: 0
                          organizationId: 0
                          questionaire:
                            answers:
                            - name: 'Yes'
                              quotaNum: 0
                            - name: 'No'
                              quotaNum: 0
                            inputOptionAllowable: false
                            multipleSelected: false
                            required: false
                          resourceBundleId: 0
                          textMessage: Test
                          title: Polling MN Template
                          useCustomEmail: false
                          useCustomSms: false
                        notificationMode: Live
                        notificationResult:
                          confirmedCount: 1
                          confirmedLateCount: 0
                          notConfirmedCount: 0
                          notificationId: 595696394699033
                          pollingDetails:
                          - count: 0
                            quotaNum: 0
                            responseText: Not Confirmed
                          - count: 0
                            quotaNum: 0
                            responseText: Unreachable
                          - count: 0
                            quotaNum: 0
                            responseText: Invalid Response
                          - count: 1
                            quotaNum: 0
                            responseText: 'Yes'
                          - count: 0
                            quotaNum: 0
                            responseText: 'No'
                          totalCount: 1
                          unreachableCount: 0
                        notificationStatus: Completed
                        oldAwareCAMPID: 0
                        organizationId: 1536984111644674
                        priority: NonPriority
                        processedBy: schedule-task-dev3-blue-i-06174345d96d44b8d
                        productSource: MNIV
                        publicMessages: {}
                        resourceBundleId: 1536984111644675
                        source: Api
                        sourceTemplateId: 594253285687316
                        startDate: 1675775058143
                        status: A
                        stoppedBy: 0
                        transformed: true
                        type: Polling
                      - accountId: 1536846672691202
                        batchNotificationId: 0
                        broadcastSettings:
                          bookConference: false
                          confirm: false
                          contactCycles: 1
                          cycleInterval: 0
                          deliverPaths:
                          - accountId: 1536846672691202
                            awarePathId: 0
                            createdDate: 1674823177533
                            createdId: 1530249602924607
                            createdName: Vishal Agrawal
                            default: true
                            displayFlag: false
                            editable: false
                            expose: false
                            extRequi

# --- truncated at 32 KB (128 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/everbridge/refs/heads/main/openapi/everbridge-notifications-api-openapi.yml