Everbridge User Management API

User, Group and Machine related API's

Operations 8

POST /Machine/Delete Delete Machines #
POST /user/delete/ Delete Users #
POST /Machine/Disable Disable Machines #
POST /User/Disable Disable Users #
POST /Group/{groupId}/Members Group Users and Machines #
GET /Group Groups #
GET /Machine Machines #
GET /user/ Users #

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-user-management-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-user-management-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SnapComms API Reference User Management API
  description: User, Group and Machine related API's
  version: v1
servers:
- description: API Url
  url: https://api.snapcomms.com/v1
- description: API Sandbox Url
  url: https://api.snapcomms.com/mock
security:
- bearerAuth: []
tags:
- name: User Management
  description: User, Group and Machine related API's
paths:
  /Machine/Delete:
    post:
      tags:
      - User Management
      operationId: user-management-delete-machines
      summary: Delete Machines
      description: Mark specified machines as deleted
      requestBody:
        x-name: consumerIds
        description: A list of Consumer IDs. The Consumer ID for a machine can be retrieved with the [Machine](/reference/user-management-machines) endpoint
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
                format: uuid
                example: d290f1ee-6c54-4b01-90e6-d701748f0851
        required: true
        x-position: 1
      responses:
        '200':
          description: ''
  /user/delete/:
    post:
      tags:
      - User Management
      summary: Delete Users
      description: Mark specified users as deleted
      operationId: user-management-delete-users
      requestBody:
        description: A list of Consumer IDs. The Consumer ID for a User can be retrieved with the [User](/reference/user-management-get-users) endpoint
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
                format: uuid
                example: d290f1ee-6c54-4b01-90e6-d701748f0851
            example:
            - 5bca85dd-05f4-453e-8d40-e4e1d727aaa3
      responses:
        '200':
          description: ''
  /Machine/Disable:
    post:
      tags:
      - User Management
      operationId: user-management-disable-machines
      summary: Disable Machines
      description: Mark specified machines as disabled
      requestBody:
        x-name: consumerIds
        description: A list of Consumer IDs. The Consumer ID for a Machine can be retrieved with the [Machine](/reference/user-management-machines) endpoint
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
                format: uuid
                example: d290f1ee-6c54-4b01-90e6-d701748f0851
            example:
            - d290f1ee-6c54-4b01-90e6-d701748f0851
        required: true
        x-position: 1
      responses:
        '200':
          description: ''
  /User/Disable:
    post:
      tags:
      - User Management
      operationId: user-management-disable-users
      summary: Disable Users
      description: Mark specified users as disabled
      requestBody:
        x-name: consumerIds
        description: A list of Consumer IDs. The Consumer ID for a User can be retrieved with the [User](/reference/user-management-get-users) endpoint
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
                format: uuid
                example: d290f1ee-6c54-4b01-90e6-d701748f0851
              example:
              - d290f1ee-6c54-4b01-90e6-d701748f0851
        required: true
        x-position: 1
      responses:
        '200':
          description: ''
  /Group/{groupId}/Members:
    post:
      tags:
      - User Management
      operationId: user-management-group-members
      summary: Group Users and Machines
      description: Get all users and machines in a specified group
      parameters:
      - name: groupId
        in: path
        required: true
        schema:
          type: string
          format: uuid
          example: d300f1ee-6c54-4b01-90e6-d701748f0843
        x-position: 1
      requestBody:
        x-name: getDataModel
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetDataModel'
        required: true
        x-position: 2
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetDataResponseModelOfGroupMemberModel'
  /Group:
    get:
      tags:
      - User Management
      operationId: user-management-groups
      summary: Groups
      description: Get all groups
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GroupModel'
  /Machine:
    get:
      tags:
      - User Management
      operationId: user-management-machines
      summary: Machines
      description: Get all machines
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MachineModel'
  /user/:
    get:
      tags:
      - User Management
      summary: Users
      description: Get all users
      operationId: user-management-get-users
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UserModel'
components:
  schemas:
    PaginationModel:
      type: object
      additionalProperties: false
      properties:
        current:
          type: integer
          format: int32
        pageSize:
          type: integer
          format: int32
        total:
          type: integer
          format: int32
    ConsumerKind:
      type: integer
      description: ''
      x-enumNames:
      - User
      - Machine
      enum:
      - 0
      - 1
    GetDataResponseModelOfGroupMemberModel:
      type: object
      additionalProperties: false
      properties:
        results:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/GroupMemberModel'
        total:
          type: integer
          format: int32
    GroupMemberModel:
      type: object
      additionalProperties: false
      properties:
        consumerId:
          type: string
          format: uuid
        organisationId:
          type: string
          format: uuid
        userName:
          type:
          - string
          - 'null'
        domainName:
          type:
          - string
          - 'null'
        fullName:
          type:
          - string
          - 'null'
        organizationalUnit:
          type:
          - string
          - 'null'
        comment:
          type:
          - string
          - 'null'
        appVersion:
          type:
          - string
          - 'null'
        corporateConsumerKind:
          type:
          - string
          - 'null'
        corporateConsumerKindId:
          $ref: '#/components/schemas/ConsumerKind'
        osPlatform:
          type:
          - string
          - 'null'
        osVersion:
          type:
          - string
          - 'null'
        machineName:
          type:
          - string
          - 'null'
        email:
          type:
          - string
          - 'null'
        sms:
          type:
          - string
          - 'null'
        status:
          $ref: '#/components/schemas/ConsumerStatus'
        lastConnectDateUtc:
          type:
          - string
          - 'null'
          format: date-time
        dataSourceName:
          type:
          - string
          - 'null'
    GetDataModel:
      type: object
      additionalProperties: false
      properties:
        filters:
          type:
          - object
          - 'null'
          additionalProperties:
            type: array
            items: {}
        searchTerm:
          type:
          - string
          - 'null'
        pagination:
          oneOf:
          - $ref: '#/components/schemas/PaginationModel'
        sorter:
          oneOf:
          - $ref: '#/components/schemas/SorterModel'
    GroupDetailModel:
      allOf:
      - $ref: '#/components/schemas/GroupBaseModel'
      - type: object
        additionalProperties: false
        properties:
          organisationId:
            type: string
            format: uuid
          groupId:
            type: string
            format: uuid
          domainName:
            type:
            - string
            - 'null'
          groupType:
            type:
            - string
            - 'null'
          autoCreated:
            type: boolean
          active:
            type: boolean
          createDateUtc:
            type:
            - string
            - 'null'
            format: date-time
          numberOfMembers:
            type: integer
            format: int32
    SorterModel:
      type: object
      additionalProperties: false
      properties:
        field:
          type:
          - string
          - 'null'
        order:
          type:
          - string
          - 'null'
    ConsumerStatus:
      type: integer
      description: ''
      x-enumNames:
      - Active
      - Inactive
      - Deleted
      - Disabled
      enum:
      - 1
      - 2
      - 3
      - 4
    GroupModel:
      allOf:
      - $ref: '#/components/schemas/GroupDetailModel'
      - type: object
        additionalProperties: false
        properties:
          organizationalUnit:
            type:
            - string
            - 'null'
          corporateGroupKind:
            type:
            - string
            - 'null'
          distinguishedName:
            type:
            - string
            - 'null'
    GroupBaseModel:
      type: object
      additionalProperties: false
      properties:
        groupName:
          type:
          - string
          - 'null'
        comment:
          type:
          - string
          - 'null'
        corporateGroupKindId:
          $ref: '#/components/schemas/ConsumerKind'
    MachineBaseModel:
      type: object
      additionalProperties: false
      properties:
        status:
          $ref: '#/components/schemas/ConsumerStatus'
        deleted:
          type: boolean
        consumerId:
          type: string
          format: uuid
        machineName:
          type:
          - string
          - 'null'
        fullName:
          type:
          - string
          - 'null'
        organisationId:
          type: string
          format: uuid
        domainName:
          type:
          - string
          - 'null'
        userNotes:
          type:
          - string
          - 'null'
        autoCreated:
          type: boolean
    UserModel:
      allOf:
      - $ref: '#/components/schemas/UserBaseModel'
      - type: object
        additionalProperties: false
        properties:
          userPrincipalName:
            type:
            - string
            - 'null'
          userNotes:
            type:
            - string
            - 'null'
          lastConnectedMachine:
            type:
            - string
            - 'null'
          lastConnectedPlatform:
            type:
            - string
            - 'null'
          lastOsVersion:
            type:
            - string
            - 'null'
          lastClientVersion:
            type:
            - string
            - 'null'
          status:
            $ref: '#/components/schemas/ConsumerStatus'
          isVerified:
            type: boolean
          organizationalUnit:
            type:
            - string
            - 'null'
          dataSourceName:
            type:
            - string
            - 'null'
          numberOfGroups:
            type: integer
            format: int32
          autoCreated:
            type: boolean
          comment:
            type:
            - string
            - 'null'
          corporateConsumerKindId:
            $ref: '#/components/schemas/ConsumerKind'
          corporateConsumerKind:
            type:
            - string
            - 'null'
          firstConnectDateUtc:
            type:
            - string
            - 'null'
            format: date-time
          lastConnectDateUtc:
            type:
            - string
            - 'null'
            format: date-time
          createdTimeUtc:
            type:
            - string
            - 'null'
            format: date-time
          distinguishedName:
            type:
            - string
            - 'null'
          lastUpdateUtc:
            type:
            - string
            - 'null'
            format: date-time
          mobileUsername:
            type:
            - string
            - 'null'
          sms:
            type:
            - string
            - 'null'
          machineId:
            type: string
            format: uuid
    MachineModel:
      allOf:
      - $ref: '#/components/schemas/MachineBaseModel'
      - type: object
        additionalProperties: false
        properties:
          firstConnectDateUtc:
            type:
            - string
            - 'null'
            format: date-time
          lastConnectDateUtc:
            type:
            - string
            - 'null'
            format: date-time
          appVersion:
            type:
            - string
            - 'null'
          osPlatform:
            type:
            - string
            - 'null'
          osVersion:
            type:
            - string
            - 'null'
          consumerKind:
            type:
            - string
            - 'null'
          dataSourceName:
            type:
            - string
            - 'null'
          lastConnectedConsumerId:
            type:
            - string
            - 'null'
            format: uuid
          lastConnectedDomainName:
            type:
            - string
            - 'null'
          lastConnectedFullName:
            type:
            - string
            - 'null'
          lastConnectedUserName:
            type:
            - string
            - 'null'
          comment:
            type:
            - string
            - 'null'
          organizationalUnit:
            type:
            - string
            - 'null'
          numberOfGroups:
            type: integer
            format: int32
          numberOfUsers:
            type: integer
            format: int32
    UserBaseModel:
      type: object
      additionalProperties: false
      properties:
        consumerId:
          type: string
          format: uuid
        organisationId:
          type: string
          format: uuid
        userName:
          type:
          - string
          - 'null'
        domainName:
          type:
          - string
          - 'null'
        fullName:
          type:
          - string
          - 'null'
        email:
          type:
          - string
          - 'null'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
x-readme:
  explorer-enabled: true
  proxy-enabled: true