IXON · Capability

IXON API — User

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

Run with Naftiko IxonUser

What You Can Do

GET
Get — User
/v1/users/{publicid}
DELETE
Delete — User
/v1/users/{publicid}

MCP Tools

user

User

read-only idempotent
user-2

User

idempotent

Capability Spec

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