IXON · Capability

IXON API — PageVersion

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

Run with Naftiko IxonPageVersion

What You Can Do

GET
Get — PageVersion
/v1/page-versions/{publicid}
PATCH
Patch — PageVersion
/v1/page-versions/{publicid}
DELETE
Delete — PageVersion
/v1/page-versions/{publicid}

MCP Tools

pageversion

PageVersion

read-only idempotent
pageversion-2

PageVersion

idempotent
pageversion-3

PageVersion

idempotent

Capability Spec

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