Everbridge website screenshot

Everbridge

Everbridge is a global software company that provides enterprise software applications that automate and accelerate organizations' operational response to critical events in order to keep people safe and businesses running.

9 APIs 0 Features
Critical Event ManagementEmergency ManagementIncident ManagementIT AlertingMass Notification

APIs

Everbridge Suite API

The Everbridge Suite REST API enables developers to integrate Everbridge's critical event management platform into their applications. It provides endpoints for managing contact...

Everbridge Asset Management API

The Everbridge Asset Management API allows organizations to manage assets, asset types, asset associations, and related templates. It supports batch operations for bulk asset ma...

Everbridge Asset Query API

The Everbridge Asset Query API provides endpoints for streaming, listing, searching, paginating, and aggregating asset data. It enables organizations to query and retrieve asset...

Everbridge CEM Alerts API

The Everbridge CEM Alerts API provides GraphQL-based endpoints for querying public alerts and streaming alert data from the Critical Event Management platform. It enables organi...

Everbridge SnapComms API

The Everbridge SnapComms API enables targeted internal communications broadcasting through the Everbridge Engage platform. It supports authentication, group and attribute target...

Everbridge Digital Apps API

The Everbridge Digital Apps API provides integration capabilities for mobile, desktop, and web applications from the perspective of an Everbridge contact. It supports receiving ...

Everbridge Communications API

The Everbridge Communications API provides endpoints for managing communication templates, categories, reservations, contact builders, message builders, plans, schedules, and va...

Everbridge iPaaS API

The Everbridge iPaaS (Integration Platform as a Service) API enables IT organizations to build integrations with monitoring and service management tools such as APM, NPM, ITOM, ...

Everbridge Safety Devices API

The Everbridge Safety Devices API provides event management capabilities for safety devices integrated with the Everbridge platform. It uses OAuth 2.0 client credential grant ty...

Collections

GraphQL

Everbridge GraphQL API

The Everbridge CEM Alerts API provides GraphQL-based endpoints for querying public alerts and streaming alert data from the Critical Event Management platform. It enables organi...

GRAPHQL

Pricing Plans

Everbridge Plans Pricing

3 plans

PLANS

Rate Limits

Everbridge Rate Limits

5 limits

RATE LIMITS

FinOps

Resources

🔗
LinkedIn
LinkedIn
🌐
Portal
Portal
🌐
DeveloperPortal
DeveloperPortal
🔗
Login
Login
📝
Signup
Signup
📰
Blog
Blog
🟢
StatusPage
StatusPage
🔗
Contact
Contact
🚀
GettingStarted
GettingStarted
🔑
Authentication
Authentication
🔗
RateLimits
RateLimits
📄
ChangeLog
ChangeLog
💬
Support
Support
🔗
Documentation
Documentation
📜
TermsOfService
TermsOfService
📜
PrivacyPolicy
PrivacyPolicy
🔗
Website
Website
👥
GitHubOrganization
GitHubOrganization
🔗
Community
Community
🔗
OpenAPI
OpenAPI

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Everbridge Suite API
  version: 1.0.0
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Authentication
    type: folder
  items:
  - info:
      name: Generate OAuth token
      type: http
    http:
      method: POST
      url: https://api.everbridge.net/authorization/v1/tokens
      body:
        type: json
        data: '{}'
    docs: Exchange client credentials for an id_token used as a bearer token.
- info:
    name: Contacts
    type: folder
  items:
  - info:
      name: List contacts
      type: http
    http:
      method: GET
      url: https://api.everbridge.net/ebs/contacts
      params:
      - name: organizationId
        value: ''
        type: query
      - name: pageNumber
        value: ''
        type: query
      - name: pageSize
        value: ''
        type: query
    docs: List contacts
  - info:
      name: Create contact
      type: http
    http:
      method: POST
      url: https://api.everbridge.net/ebs/contacts
      body:
        type: json
        data: '{}'
    docs: Create contact
  - info:
      name: Get contact
      type: http
    http:
      method: GET
      url: https://api.everbridge.net/ebs/contacts/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get contact
  - info:
      name: Update contact
      type: http
    http:
      method: PUT
      url: https://api.everbridge.net/ebs/contacts/:id
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update contact
  - info:
      name: Partial update contact
      type: http
    http:
      method: PATCH
      url: https://api.everbridge.net/ebs/contacts/:id
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Partial update contact
  - info:
      name: Delete contact
      type: http
    http:
      method: DELETE
      url: https://api.everbridge.net/ebs/contacts/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete contact
  - info:
      name: Batch create, update, or delete contacts
      type: http
    http:
      method: POST
      url: https://api.everbridge.net/ebs/contacts/batch
      body:
        type: json
        data: '{}'
    docs: Batch create, update, or delete contacts
- info:
    name: Groups
    type: folder
  items:
  - info:
      name: List groups
      type: http
    http:
      method: GET
      url: https://api.everbridge.net/ebs/groups
    docs: List groups
  - info:
      name: Create group
      type: http
    http:
      method: POST
      url: https://api.everbridge.net/ebs/groups
      body:
        type: json
        data: '{}'
    docs: Create group
  - info:
      name: Get group
      type: http
    http:
      method: GET
      url: https://api.everbridge.net/ebs/groups/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get group
  - info:
      name: Update group
      type: http
    http:
      method: PUT
      url: https://api.everbridge.net/ebs/groups/:id
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update group
  - info:
      name: Delete group
      type: http
    http:
      method: DELETE
      url: https://api.everbridge.net/ebs/groups/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete group
  - info:
      name: Add contacts to group
      type: http
    http:
      method: POST
      url: https://api.everbridge.net/ebs/groups/:id/contacts
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Add contacts to group
- info:
    name: Notifications
    type: folder
  items:
  - info:
      name: List notifications
      type: http
    http:
      method: GET
      url: https://api.everbridge.net/ebs/notifications
    docs: List notifications
  - info:
      name: Launch mass notification
      type: http
    http:
      method: POST
      url: https://api.everbridge.net/ebs/notifications
      body:
        type: json
        data: '{}'
    docs: Launch mass notification
  - info:
      name: Get notification
      type: http
    http:
      method: GET
      url: https://api.everbridge.net/ebs/notifications/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get notification
  - info:
      name: Update notification
      type: http
    http:
      method: PUT
      url: https://api.everbridge.net/ebs/notifications/:id
      params:
      - name: id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update notification
bundled: true