WSO2 · Capability

WSO2 API Manager - Developer Portal — Applications

WSO2 API Manager - Developer Portal — Applications. 6 operations. Lead operation: Retrieve/Search Applications. Self-contained Naftiko capability covering one Wso2 business surface.

Run with Naftiko Wso2Applications

What You Can Do

GET
Get — Retrieve/Search Applications
/v1/applications
POST
Post — Create a New Application
/v1/applications
GET
Get — Get Details of an Application
/v1/applications/{applicationid}
PUT
Put — Update an Application
/v1/applications/{applicationid}
DELETE
Delete — Remove an Application
/v1/applications/{applicationid}
POST
Post — Reset Application-Level Throttle Policy
/v1/applications/{applicationid}/reset-throttle-policy

MCP Tools

retrieve-search-applications

Retrieve/Search Applications

read-only idempotent
create-new-application

Create a New Application

get-details-application

Get Details of an Application

read-only idempotent
update-application

Update an Application

idempotent
remove-application

Remove an Application

idempotent
reset-application-level-throttle-policy

Reset Application-Level Throttle Policy

Capability Spec

devportal-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: WSO2 API Manager - Developer Portal — Applications
  description: 'WSO2 API Manager - Developer Portal — Applications. 6 operations. Lead operation: Retrieve/Search Applications.
    Self-contained Naftiko capability covering one Wso2 business surface.'
  tags:
  - Wso2
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WSO2_API_KEY: WSO2_API_KEY
capability:
  consumes:
  - type: http
    namespace: devportal-applications
    baseUri: https://apis.wso2.com/api/am/devportal/v3
    description: WSO2 API Manager - Developer Portal — Applications business capability. Self-contained, no shared references.
    resources:
    - name: applications
      path: /applications
      operations:
      - name: get
        method: GET
        description: Retrieve/Search Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: query
          in: query
          type: string
          description: '**Search condition**.'
        - name: sortBy
          in: query
          type: string
        - name: sortOrder
          in: query
          type: string
      - name: post
        method: POST
        description: Create a New Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: applications-applicationId
      path: /applications/{applicationId}
      operations:
      - name: get
        method: GET
        description: Get Details of an Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: put
        method: PUT
        description: Update an Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: delete
        method: DELETE
        description: Remove an Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: applications-applicationId-reset-throttle-policy
      path: /applications/{applicationId}/reset-throttle-policy
      operations:
      - name: post
        method: POST
        description: Reset Application-Level Throttle Policy
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.WSO2_API_KEY}}'
  exposes:
  - type: rest
    namespace: devportal-applications-rest
    port: 8080
    description: REST adapter for WSO2 API Manager - Developer Portal — Applications. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/applications
      name: applications
      description: REST surface for applications.
      operations:
      - method: GET
        name: get
        description: Retrieve/Search Applications
        call: devportal-applications.get
        with:
          query: rest.query
          sortBy: rest.sortBy
          sortOrder: rest.sortOrder
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: Create a New Application
        call: devportal-applications.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/applications/{applicationid}
      name: applications-applicationid
      description: REST surface for applications-applicationId.
      operations:
      - method: GET
        name: get
        description: Get Details of an Application
        call: devportal-applications.get
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: put
        description: Update an Application
        call: devportal-applications.put
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: Remove an Application
        call: devportal-applications.delete
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/applications/{applicationid}/reset-throttle-policy
      name: applications-applicationid-reset-throttle-policy
      description: REST surface for applications-applicationId-reset-throttle-policy.
      operations:
      - method: POST
        name: post
        description: Reset Application-Level Throttle Policy
        call: devportal-applications.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: devportal-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for WSO2 API Manager - Developer Portal — Applications. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: retrieve-search-applications
      description: Retrieve/Search Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: devportal-applications.get
      with:
        query: tools.query
        sortBy: tools.sortBy
        sortOrder: tools.sortOrder
      outputParameters:
      - type: object
        mapping: $.
    - name: create-new-application
      description: Create a New Application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: devportal-applications.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-details-application
      description: Get Details of an Application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: devportal-applications.get
      outputParameters:
      - type: object
        mapping: $.
    - name: update-application
      description: Update an Application
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: devportal-applications.put
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: remove-application
      description: Remove an Application
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: devportal-applications.delete
      outputParameters:
      - type: object
        mapping: $.
    - name: reset-application-level-throttle-policy
      description: Reset Application-Level Throttle Policy
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: devportal-applications.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.