Postman · Capability

Postman Private API Network API — Network Elements

Postman Private API Network API — Network Elements. 3 operations. Lead operation: Postman Add an element to the private API network. Self-contained Naftiko capability covering one Postman business surface.

Run with Naftiko PostmanNetwork Elements

What You Can Do

POST
Addnetworkelement — Postman Add an element to the private API network
/v1/network/private
PUT
Updatenetworkelement — Postman Update a network element
/v1/network/private/{elementtype}/{elementid}
DELETE
Removenetworkelement — Postman Remove an element from the private API network
/v1/network/private/{elementtype}/{elementid}

MCP Tools

postman-add-element-private-api

Postman Add an element to the private API network

postman-update-network-element

Postman Update a network element

idempotent
postman-remove-element-private-api

Postman Remove an element from the private API network

idempotent

Capability Spec

private-api-network-network-elements.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Postman Private API Network API — Network Elements
  description: 'Postman Private API Network API — Network Elements. 3 operations. Lead operation: Postman Add an element to
    the private API network. Self-contained Naftiko capability covering one Postman business surface.'
  tags:
  - Postman
  - Network Elements
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    POSTMAN_API_KEY: POSTMAN_API_KEY
capability:
  consumes:
  - type: http
    namespace: private-api-network-network-elements
    baseUri: https://api.getpostman.com
    description: Postman Private API Network API — Network Elements business capability. Self-contained, no shared references.
    resources:
    - name: network-private
      path: /network/private
      operations:
      - name: addnetworkelement
        method: POST
        description: Postman Add an element to the private API network
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: network-private-elementType-elementId
      path: /network/private/{elementType}/{elementId}
      operations:
      - name: updatenetworkelement
        method: PUT
        description: Postman Update a network element
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: elementType
          in: path
          type: string
          required: true
        - name: elementId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: removenetworkelement
        method: DELETE
        description: Postman Remove an element from the private API network
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: elementType
          in: path
          type: string
          required: true
        - name: elementId
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: x-api-key
      value: '{{env.POSTMAN_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: private-api-network-network-elements-rest
    port: 8080
    description: REST adapter for Postman Private API Network API — Network Elements. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/network/private
      name: network-private
      description: REST surface for network-private.
      operations:
      - method: POST
        name: addnetworkelement
        description: Postman Add an element to the private API network
        call: private-api-network-network-elements.addnetworkelement
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/network/private/{elementtype}/{elementid}
      name: network-private-elementtype-elementid
      description: REST surface for network-private-elementType-elementId.
      operations:
      - method: PUT
        name: updatenetworkelement
        description: Postman Update a network element
        call: private-api-network-network-elements.updatenetworkelement
        with:
          elementType: rest.elementType
          elementId: rest.elementId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: removenetworkelement
        description: Postman Remove an element from the private API network
        call: private-api-network-network-elements.removenetworkelement
        with:
          elementType: rest.elementType
          elementId: rest.elementId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: private-api-network-network-elements-mcp
    port: 9090
    transport: http
    description: MCP adapter for Postman Private API Network API — Network Elements. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: postman-add-element-private-api
      description: Postman Add an element to the private API network
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: private-api-network-network-elements.addnetworkelement
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: postman-update-network-element
      description: Postman Update a network element
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: private-api-network-network-elements.updatenetworkelement
      with:
        elementType: tools.elementType
        elementId: tools.elementId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: postman-remove-element-private-api
      description: Postman Remove an element from the private API network
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: private-api-network-network-elements.removenetworkelement
      with:
        elementType: tools.elementType
        elementId: tools.elementId
      outputParameters:
      - type: object
        mapping: $.