Nokia NetAct · Capability

Nokia NetAct Network Management Northbound Interface API — Configuration Management

Nokia NetAct Network Management Northbound Interface API — Configuration Management. 2 operations. Lead operation: Get managed object attributes. Self-contained Naftiko capability covering one Nokia Netact business surface.

Run with Naftiko Nokia NetactConfiguration Management

What You Can Do

GET
Getnetworkelementattributes — Get managed object attributes
/v1/configuration/network-elements/{distinguishedname}/attributes
PATCH
Updatenetworkelementattributes — Modify managed object attributes
/v1/configuration/network-elements/{distinguishedname}/attributes

MCP Tools

get-managed-object-attributes

Get managed object attributes

read-only idempotent
modify-managed-object-attributes

Modify managed object attributes

idempotent

Capability Spec

nbi-configuration-management.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Nokia NetAct Network Management Northbound Interface API — Configuration Management
  description: 'Nokia NetAct Network Management Northbound Interface API — Configuration Management. 2 operations. Lead operation:
    Get managed object attributes. Self-contained Naftiko capability covering one Nokia Netact business surface.'
  tags:
  - Nokia Netact
  - Configuration Management
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NOKIA_NETACT_API_KEY: NOKIA_NETACT_API_KEY
capability:
  consumes:
  - type: http
    namespace: nbi-configuration-management
    baseUri: https://{netact-host}/api/v1
    description: Nokia NetAct Network Management Northbound Interface API — Configuration Management business capability.
      Self-contained, no shared references.
    resources:
    - name: configuration-network-elements-distinguishedName-attributes
      path: /configuration/network-elements/{distinguishedName}/attributes
      operations:
      - name: getnetworkelementattributes
        method: GET
        description: Get managed object attributes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: distinguishedName
          in: path
          type: string
          required: true
        - name: attributes
          in: query
          type: string
          description: Comma-separated list of attribute names to retrieve (all if omitted)
      - name: updatenetworkelementattributes
        method: PATCH
        description: Modify managed object attributes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: distinguishedName
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.NOKIA_NETACT_API_KEY}}'
  exposes:
  - type: rest
    namespace: nbi-configuration-management-rest
    port: 8080
    description: REST adapter for Nokia NetAct Network Management Northbound Interface API — Configuration Management. One
      Spectral-compliant resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/configuration/network-elements/{distinguishedname}/attributes
      name: configuration-network-elements-distinguishedname-attributes
      description: REST surface for configuration-network-elements-distinguishedName-attributes.
      operations:
      - method: GET
        name: getnetworkelementattributes
        description: Get managed object attributes
        call: nbi-configuration-management.getnetworkelementattributes
        with:
          distinguishedName: rest.distinguishedName
          attributes: rest.attributes
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatenetworkelementattributes
        description: Modify managed object attributes
        call: nbi-configuration-management.updatenetworkelementattributes
        with:
          distinguishedName: rest.distinguishedName
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: nbi-configuration-management-mcp
    port: 9090
    transport: http
    description: MCP adapter for Nokia NetAct Network Management Northbound Interface API — Configuration Management. One
      tool per consumed operation, routed inline through this capability's consumes block.
    tools:
    - name: get-managed-object-attributes
      description: Get managed object attributes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: nbi-configuration-management.getnetworkelementattributes
      with:
        distinguishedName: tools.distinguishedName
        attributes: tools.attributes
      outputParameters:
      - type: object
        mapping: $.
    - name: modify-managed-object-attributes
      description: Modify managed object attributes
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: nbi-configuration-management.updatenetworkelementattributes
      with:
        distinguishedName: tools.distinguishedName
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.