Cisco Crosswork Alarms API

The Alarms API from Cisco Crosswork — 9 operation(s) for alarms.

Business capability
Network Fault Management BC-2600.10

Operations 11

PUT /v1/ack Acknowledge Alarms #
PUT /v1/clear Clear alarms #
POST /v1/event Create and raise an event #
PUT /v1/note Add Note to Alarms #
POST /v1/query Get Alarms according to criteria in the request #
DELETE /v1/rest-dest Del Rest Destination #
POST /v1/rest-dest Add Rest Destination #
POST /v1/rest-dest/query Get Syslog Destinations, always return a full list #
DELETE /v1/syslog-dest Del Syslog Destination #
POST /v1/syslog-dest Add Syslog Destination #
POST /v1/syslog-dest/query Get Syslog Destinations, always return a full list #

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/cisco-crosswork-alarms-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

cisco-crosswork-alarms-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: proto/.proto Alarms API
  version: version not set
  x-provenance:
    method: harvested
    authored_by: Cisco Crosswork
    harvested_by: API Evangelist
    harvested_on: '2026-08-19'
    first_party: true
    note: Published by Cisco. Retrieved unmodified except for this x-provenance block.
    provider_published: true
  x-evidence:
  - type: source
    url: https://github.com/CiscoDevNet/crosswork-openapi-spec/blob/master/NCAHI/4.0APIs/alarms.swagger.json
  - type: raw
    url: https://raw.githubusercontent.com/CiscoDevNet/crosswork-openapi-spec/master/NCAHI/4.0APIs/alarms.swagger.json
tags:
- name: Alarms
paths:
  /v1/ack:
    put:
      summary: Acknowledge Alarms
      operationId: AcknowledgeAlarms
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alarmsAlarmResponse'
      tags:
      - Alarms
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alarmsAcknowledgeAlarmReq'
        required: true
  /v1/clear:
    put:
      summary: Clear alarms
      operationId: ClearAlarms
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alarmsAlarmResponse'
      tags:
      - Alarms
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alarmsClearAlarmReq'
        required: true
  /v1/event:
    post:
      summary: Create and raise an event
      operationId: RaiseEvent
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alarmsAlarmResponse'
      tags:
      - Alarms
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alarmsEvent'
        required: true
  /v1/note:
    put:
      summary: Add Note to Alarms
      operationId: NoteAlarms
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alarmsAlarmResponse'
      tags:
      - Alarms
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alarmsNoteAlarmReq'
        required: true
  /v1/query:
    post:
      summary: Get Alarms according to criteria in the request
      operationId: GetAlarms
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alarmsAlarmResponse'
      tags:
      - Alarms
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alarmsGetAlarmsReq'
        required: true
  /v1/rest-dest:
    delete:
      summary: Del Rest Destination
      operationId: DelRestDestination
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alarmsAlarmResponse'
      tags:
      - Alarms
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alarmsRestDestination'
        required: true
    post:
      summary: Add Rest Destination
      operationId: AddRestDestination
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alarmsAlarmResponse'
      tags:
      - Alarms
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alarmsRestDestination'
        required: true
  /v1/rest-dest/query:
    post:
      summary: Get Syslog Destinations, always return a full list
      operationId: GetRestDestinations
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alarmsRestDestinationList'
      tags:
      - Alarms
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alarmsRestDestination'
        required: true
  /v1/syslog-dest:
    delete:
      summary: Del Syslog Destination
      operationId: DelSyslogDestination
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alarmsAlarmResponse'
      tags:
      - Alarms
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alarmsSyslogDestination'
        required: true
    post:
      summary: Add Syslog Destination
      operationId: AddSyslogDestination
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alarmsAlarmResponse'
      tags:
      - Alarms
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alarmsSyslogDestination'
        required: true
  /v1/syslog-dest/query:
    post:
      summary: Get Syslog Destinations, always return a full list
      operationId: GetSyslogDestinations
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/alarmsSyslogDestinationList'
      tags:
      - Alarms
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/alarmsSyslogDestination'
        required: true
components:
  schemas:
    alarmsRestDestinationList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/alarmsRestDestination'
      title: Rest Destination List
    alarmsSeverity:
      type: string
      enum:
      - InvalidSeverity
      - Clear
      - Info
      - Warning
      - Minor
      - Major
      - Critical
      default: InvalidSeverity
      title: Defines the Event/Alarm severity
    alarmsAlarm:
      type: object
      properties:
        AlarmId:
          type: string
          title: A unique uuid generated for the alarm
        origin_service_id:
          type: string
          title: The origin service id of this event
        origin_app_id:
          type: string
          title: The origin app id of this event
        object_id:
          type: string
          title: The object/model identifier of the faulting event
        object_description:
          type: string
          title: The description of the object/model identifier as it should be shown in the GUI
        event_type:
          type: integer
          format: int32
          title: Event Type for correlation
        State:
          $ref: '#/components/schemas/alarmsSeverity'
          description: Current Alarm severity per the latest event.
        Description:
          type: string
          description: The alarm description per the latest event.
        Created:
          type: string
          format: int64
          title: Time when the alarm was created
        Updated:
          type: string
          format: int64
          title: Time when the alarm was last updated
        Closed:
          type: string
          format: int64
          title: Time when the alarm was cleared
        Acknowledge:
          type: boolean
          format: boolean
          title: Was the alarm Acknowledge
        AcknowledeBy:
          type: string
          title: Who acknowledge the alarm
        AcknowledgeAt:
          type: string
          format: int64
          title: When was the alarm acknowledge
        Events:
          type: array
          items:
            $ref: '#/components/schemas/alarmsEvent'
          title: Events aggregated under the alarm
        Alarms:
          type: array
          items:
            $ref: '#/components/schemas/alarmsAlarm'
          title: Alarms correlated to this alarm
        AlarmCategory:
          $ref: '#/components/schemas/alarmsCategory'
          title: The Alarm Category
        Notes:
          type: array
          items:
            $ref: '#/components/schemas/alarmsEvent'
          title: Notes
        AckHist:
          type: array
          items:
            $ref: '#/components/schemas/alarmsEvent'
          title: Acknowledge History
        events_count:
          type: integer
          format: int32
          title: Number of events in this alarm
      title: An Alarm that aggregates several Events & Alarms
    alarmsSyslogDestination:
      type: object
      properties:
        host:
          type: string
        port:
          type: integer
          format: int32
        criteria:
          type: string
        rate_per_second:
          type: integer
          format: int32
        secure:
          type: boolean
          format: boolean
        certificate_id:
          type: string
      title: Syslog Destination
    alarmsEvent:
      type: object
      properties:
        EventId:
          type: string
          description: Generated uuid to identify uniquely the event. Will be generated by the client lib.
        origin_service_id:
          type: string
          title: The origin service id of this event
        origin_app_id:
          type: string
          title: The origin app id of this event
        object_id:
          type: string
          title: The object/model identifier of the faulting event
        object_description:
          type: string
          title: The description of the object/model identifier as it should be shown in the GUI
        event_type:
          type: integer
          format: int32
          title: Event Type for correlation
        Timestamp:
          type: string
          format: int64
          description: The time this event was created. Will be filled by the client lib.
        EventSeverity:
          $ref: '#/components/schemas/alarmsSeverity'
          description: The severity of the Event.
        Description:
          type: string
          description: A free text, parametrized, description. Do not need to fill if there is an event type...
        DescriptionParams:
          type: array
          items:
            type: string
          description: Parameters for the alarm description.
        CreateBy:
          type: string
          description: Who created the event, if the user acknowledge the alarm then the source is the same but the creator is not...
        EventCategory:
          $ref: '#/components/schemas/alarmsCategory'
          description: The event category, e.g. system, network & etc.
        Flagging:
          type: boolean
          format: boolean
          title: If the event is a flagging event, e.g. raise an alarm
      title: 'An Event structure, an application/service will post this proto as an input

        for the Alarm Center to create Events and Alarms'
    alarmsResponseState:
      type: string
      enum:
      - InvalidState
      - Success
      - Fail
      - Partial
      default: InvalidState
      title: Indicate the outcome of the API operation response invoked on the Alarm Center
    alarmsNoteAlarmReq:
      type: object
      properties:
        alarmId:
          type: string
        criteria:
          type: string
        note:
          type: string
      title: Add Notes to Alarm Request
    alarmsAcknowledgeAlarmReq:
      type: object
      properties:
        alarmId:
          type: string
        criteria:
          type: string
        note:
          type: string
        ack:
          type: boolean
          format: boolean
      title: Acknowledge/UnAcknowledge Alarm Request
    alarmsSyslogDestinationList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/alarmsSyslogDestination'
      title: Syslog Destination List
    alarmsGetAlarmsReq:
      type: object
      properties:
        openAlarmsOnly:
          type: boolean
          format: boolean
        criteria:
          type: string
      title: Request Alarms proto, criteria is a criteria for alarms
    alarmsRestDestination:
      type: object
      properties:
        host:
          type: string
        port:
          type: integer
          format: int32
        url:
          type: string
        username:
          type: string
        password:
          type: string
      title: Rest Destination
    alarmsAlarmResponse:
      type: object
      properties:
        state:
          $ref: '#/components/schemas/alarmsResponseState'
        Message:
          type: string
        eventId:
          type: string
        alarmId:
          type: string
        alarms:
          type: array
          items:
            $ref: '#/components/schemas/alarmsAlarm'
        events:
          type: array
          items:
            $ref: '#/components/schemas/alarmsEvent'
        total:
          type: string
          format: int64
      title: Response object for any Alarm Center API
    alarmsClearAlarmReq:
      type: object
      properties:
        alarmId:
          type: string
        criteria:
          type: string
        note:
          type: string
      title: Clear Alarm Request
    alarmsCategory:
      type: string
      enum:
      - InvalidCategory
      - System
      - Network
      - Audit
      - Security
      - External
      default: InvalidCategory
      title: Defines the Category of the Event/Alarm