IXON · Capability

IXON API — PageComponent

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

Run with Naftiko IxonPageComponent

What You Can Do

GET
Get — PageComponent
/v1/page-components/{publicid}
PATCH
Patch — PageComponent
/v1/page-components/{publicid}
DELETE
Delete — PageComponent
/v1/page-components/{publicid}

MCP Tools

pagecomponent

PageComponent

read-only idempotent
pagecomponent-2

PageComponent

idempotent
pagecomponent-3

PageComponent

idempotent

Capability Spec

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