Nokia NetAct Fault Management API

Alarm monitoring and lifecycle management

Operations 3

GET /faults/alarms List active alarms #
GET /faults/alarms/{alarmId} Get alarm details #
POST /faults/alarms/{alarmId}/acknowledge Acknowledge an alarm #

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/nokia-netact-fault-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

nokia-netact-fault-management-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nokia NetAct Network Management Northbound Interface Configuration Management Fault Management API
  description: Nokia NetAct provides network element management APIs for telecom operators. APIs enable network topology discovery, performance monitoring, fault management, and configuration management across RAN, transport, and core network infrastructure. The NBI (Northbound Interface) exposes REST APIs for OSS/BSS integration.
  version: 22.0.0
  contact:
    name: Nokia Networks Support
    url: https://www.nokia.com/networks/support/
  license:
    name: Proprietary
    url: https://www.nokia.com/
servers:
- url: https://{netact-host}/api/v1
  variables:
    netact-host:
      default: netact.example.com
      description: Nokia NetAct server hostname
security:
- BearerAuth: []
- BasicAuth: []
tags:
- name: Fault Management
  description: Alarm monitoring and lifecycle management
paths:
  /faults/alarms:
    get:
      operationId: listActiveAlarms
      summary: List active alarms
      description: Retrieve currently active alarms from managed network elements. Supports filtering by severity, network element, alarm type, and time range.
      tags:
      - Fault Management
      parameters:
      - name: severity
        in: query
        schema:
          type: string
          enum:
          - CRITICAL
          - MAJOR
          - MINOR
          - WARNING
          - INDETERMINATE
      - name: neDn
        in: query
        schema:
          type: string
        description: Distinguished Name of the source NE
      - name: alarmType
        in: query
        schema:
          type: string
          enum:
          - COMMUNICATION_ALARM
          - EQUIPMENT_ALARM
          - PROCESSING_ERROR
          - QUALITY_OF_SERVICE
          - ENVIRONMENTAL
      - name: fromTime
        in: query
        schema:
          type: string
          format: date-time
      - name: limit
        in: query
        schema:
          type: integer
          default: 200
          maximum: 10000
      responses:
        '200':
          description: Active alarms
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AlarmListResponse'
  /faults/alarms/{alarmId}:
    get:
      operationId: getAlarm
      summary: Get alarm details
      description: Retrieve full details of a specific alarm by ID.
      tags:
      - Fault Management
      parameters:
      - name: alarmId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Alarm details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Alarm'
        '404':
          $ref: '#/components/responses/NotFound'
  /faults/alarms/{alarmId}/acknowledge:
    post:
      operationId: acknowledgeAlarm
      summary: Acknowledge an alarm
      description: Acknowledge an active alarm, optionally adding a comment.
      tags:
      - Fault Management
      parameters:
      - name: alarmId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                comment:
                  type: string
                  maxLength: 512
                acknowledgedBy:
                  type: string
      responses:
        '200':
          description: Alarm acknowledged
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Alarm'
components:
  schemas:
    Alarm:
      type: object
      properties:
        alarmId:
          type: string
        neDn:
          type: string
          description: DN of the source network element
        severity:
          type: string
          enum:
          - CRITICAL
          - MAJOR
          - MINOR
          - WARNING
          - INDETERMINATE
          - CLEARED
        alarmType:
          type: string
          enum:
          - COMMUNICATION_ALARM
          - EQUIPMENT_ALARM
          - PROCESSING_ERROR
          - QUALITY_OF_SERVICE
          - ENVIRONMENTAL
        probableCause:
          type: integer
          description: X.733 probable cause code
        specificProblem:
          type: string
          description: Vendor-specific problem description
        additionalText:
          type: string
        raisedTime:
          type: string
          format: date-time
        clearedTime:
          type: string
          format: date-time
        acknowledgedTime:
          type: string
          format: date-time
        acknowledgedBy:
          type: string
        technology:
          type: string
          enum:
          - 2G
          - 3G
          - 4G
          - 5G
          - TRANSPORT
          - CORE
    AlarmListResponse:
      type: object
      properties:
        alarms:
          type: array
          items:
            $ref: '#/components/schemas/Alarm'
        totalCount:
          type: integer
    ErrorResponse:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        details:
          type: string
  responses:
    NotFound:
      description: Network element not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
    BasicAuth:
      type: http
      scheme: basic
externalDocs:
  description: Nokia NetAct Documentation
  url: https://www.nokia.com/networks/products/netact/