IXON · Capability

IXON API — UserList

IXON API — UserList. 3 operations. Lead operation: UserList. Self-contained Naftiko capability covering one Ixon business surface.

Run with Naftiko IxonUserList

What You Can Do

GET
Get — UserList
/v1/users
POST
Post — UserList
/v1/users
DELETE
Delete — UserList
/v1/users

MCP Tools

userlist

UserList

read-only idempotent
userlist-2

UserList

userlist-3

UserList

idempotent

Capability Spec

ixon-userlist.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: IXON API — UserList
  description: 'IXON API — UserList. 3 operations. Lead operation: UserList. Self-contained Naftiko capability covering one
    Ixon business surface.'
  tags:
  - Ixon
  - UserList
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    IXON_API_KEY: IXON_API_KEY
capability:
  consumes:
  - type: http
    namespace: ixon-userlist
    baseUri: https://portal.ixon.cloud:443/api
    description: IXON API — UserList business capability. Self-contained, no shared references.
    resources:
    - name: users
      path: /users
      operations:
      - name: get
        method: GET
        description: UserList
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: post
        method: POST
        description: UserList
        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: UserList
        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.IXON_API_KEY}}'
  exposes:
  - type: rest
    namespace: ixon-userlist-rest
    port: 8080
    description: REST adapter for IXON API — UserList. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/users
      name: users
      description: REST surface for users.
      operations:
      - method: GET
        name: get
        description: UserList
        call: ixon-userlist.get
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: UserList
        call: ixon-userlist.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: UserList
        call: ixon-userlist.delete
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ixon-userlist-mcp
    port: 9090
    transport: http
    description: MCP adapter for IXON API — UserList. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: userlist
      description: UserList
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ixon-userlist.get
      outputParameters:
      - type: object
        mapping: $.
    - name: userlist-2
      description: UserList
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: ixon-userlist.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: userlist-3
      description: UserList
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: ixon-userlist.delete
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.