PeopleSoft · Capability

PeopleSoft Component Interface API — Component Interfaces

PeopleSoft Component Interface API — Component Interfaces. 3 operations. Lead operation: PeopleSoft Get Component Data. Self-contained Naftiko capability covering one Peoplesoft business surface.

Run with Naftiko PeoplesoftComponent Interfaces

What You Can Do

GET
Getcomponentdata — PeopleSoft Get Component Data
/v1/{componentinterface}
POST
Createcomponentdata — PeopleSoft Create Component Data
/v1/{componentinterface}
PUT
Updatecomponentdata — PeopleSoft Update Component Data
/v1/{componentinterface}

MCP Tools

peoplesoft-get-component-data

PeopleSoft Get Component Data

read-only idempotent
peoplesoft-create-component-data

PeopleSoft Create Component Data

peoplesoft-update-component-data

PeopleSoft Update Component Data

idempotent

Capability Spec

component-interface-component-interfaces.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: PeopleSoft Component Interface API — Component Interfaces
  description: 'PeopleSoft Component Interface API — Component Interfaces. 3 operations. Lead operation: PeopleSoft Get Component
    Data. Self-contained Naftiko capability covering one Peoplesoft business surface.'
  tags:
  - Peoplesoft
  - Component Interfaces
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PEOPLESOFT_API_KEY: PEOPLESOFT_API_KEY
capability:
  consumes:
  - type: http
    namespace: component-interface-component-interfaces
    baseUri: https://{hostname}:{port}/psft/api/componentinterface/v1
    description: PeopleSoft Component Interface API — Component Interfaces business capability. Self-contained, no shared
      references.
    resources:
    - name: componentInterface
      path: /{componentInterface}
      operations:
      - name: getcomponentdata
        method: GET
        description: PeopleSoft Get Component Data
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: componentInterface
          in: path
          type: string
          description: The component interface name
          required: true
      - name: createcomponentdata
        method: POST
        description: PeopleSoft Create Component Data
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: componentInterface
          in: path
          type: string
          description: The component interface name
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updatecomponentdata
        method: PUT
        description: PeopleSoft Update Component Data
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: componentInterface
          in: path
          type: string
          description: The component interface name
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.PEOPLESOFT_USER}}'
      password: '{{env.PEOPLESOFT_PASS}}'
  exposes:
  - type: rest
    namespace: component-interface-component-interfaces-rest
    port: 8080
    description: REST adapter for PeopleSoft Component Interface API — Component Interfaces. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/{componentinterface}
      name: componentinterface
      description: REST surface for componentInterface.
      operations:
      - method: GET
        name: getcomponentdata
        description: PeopleSoft Get Component Data
        call: component-interface-component-interfaces.getcomponentdata
        with:
          componentInterface: rest.componentInterface
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcomponentdata
        description: PeopleSoft Create Component Data
        call: component-interface-component-interfaces.createcomponentdata
        with:
          componentInterface: rest.componentInterface
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecomponentdata
        description: PeopleSoft Update Component Data
        call: component-interface-component-interfaces.updatecomponentdata
        with:
          componentInterface: rest.componentInterface
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: component-interface-component-interfaces-mcp
    port: 9090
    transport: http
    description: MCP adapter for PeopleSoft Component Interface API — Component Interfaces. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: peoplesoft-get-component-data
      description: PeopleSoft Get Component Data
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: component-interface-component-interfaces.getcomponentdata
      with:
        componentInterface: tools.componentInterface
      outputParameters:
      - type: object
        mapping: $.
    - name: peoplesoft-create-component-data
      description: PeopleSoft Create Component Data
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: component-interface-component-interfaces.createcomponentdata
      with:
        componentInterface: tools.componentInterface
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: peoplesoft-update-component-data
      description: PeopleSoft Update Component Data
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: component-interface-component-interfaces.updatecomponentdata
      with:
        componentInterface: tools.componentInterface
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.