Oracle Fusion Cloud Applications Oracle Fusion Common Features REST API — Persons

Oracle Fusion Cloud Applications Oracle Fusion Common Features REST API — Persons. 5 operations. Lead operation: Oracle Fusion Cloud Applications List persons. Self-contained Naftiko capability covering one Oracle Fusion business surface.

Run with Naftiko Oracle FusionPersons

What You Can Do

GET
Listpersons — Oracle Fusion Cloud Applications List persons
/v1/fscmrestapi/resources/11-13-18-05/persons
POST
Createperson — Oracle Fusion Cloud Applications Create a person
/v1/fscmrestapi/resources/11-13-18-05/persons
GET
Getperson — Oracle Fusion Cloud Applications Get a person
/v1/fscmrestapi/resources/11-13-18-05/persons/{personid}
PATCH
Updateperson — Oracle Fusion Cloud Applications Update a person
/v1/fscmrestapi/resources/11-13-18-05/persons/{personid}
DELETE
Deleteperson — Oracle Fusion Cloud Applications Delete a person
/v1/fscmrestapi/resources/11-13-18-05/persons/{personid}

MCP Tools

oracle-fusion-cloud-applications-list

Oracle Fusion Cloud Applications List persons

read-only idempotent
oracle-fusion-cloud-applications-create

Oracle Fusion Cloud Applications Create a person

oracle-fusion-cloud-applications-get

Oracle Fusion Cloud Applications Get a person

read-only idempotent
oracle-fusion-cloud-applications-update

Oracle Fusion Cloud Applications Update a person

idempotent
oracle-fusion-cloud-applications-delete

Oracle Fusion Cloud Applications Delete a person

idempotent

Capability Spec

common-persons.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Fusion Cloud Applications Oracle Fusion Common Features REST API — Persons
  description: 'Oracle Fusion Cloud Applications Oracle Fusion Common Features REST API — Persons. 5 operations. Lead operation:
    Oracle Fusion Cloud Applications List persons. Self-contained Naftiko capability covering one Oracle Fusion business surface.'
  tags:
  - Oracle Fusion
  - Persons
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORACLE_FUSION_API_KEY: ORACLE_FUSION_API_KEY
capability:
  consumes:
  - type: http
    namespace: common-persons
    baseUri: https://{instance}.oraclecloud.com
    description: Oracle Fusion Cloud Applications Oracle Fusion Common Features REST API — Persons business capability. Self-contained,
      no shared references.
    resources:
    - name: fscmRestApi-resources-11.13.18.05-persons
      path: /fscmRestApi/resources/11.13.18.05/persons
      operations:
      - name: listpersons
        method: GET
        description: Oracle Fusion Cloud Applications List persons
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createperson
        method: POST
        description: Oracle Fusion Cloud Applications Create a person
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: fscmRestApi-resources-11.13.18.05-persons-Personid
      path: /fscmRestApi/resources/11.13.18.05/persons/{Personid}
      operations:
      - name: getperson
        method: GET
        description: Oracle Fusion Cloud Applications Get a person
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Personid
          in: path
          type: integer
          required: true
      - name: updateperson
        method: PATCH
        description: Oracle Fusion Cloud Applications Update a person
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Personid
          in: path
          type: integer
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteperson
        method: DELETE
        description: Oracle Fusion Cloud Applications Delete a person
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Personid
          in: path
          type: integer
          required: true
    authentication:
      type: bearer
      token: '{{env.ORACLE_FUSION_API_KEY}}'
  exposes:
  - type: rest
    namespace: common-persons-rest
    port: 8080
    description: REST adapter for Oracle Fusion Cloud Applications Oracle Fusion Common Features REST API — Persons. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/fscmrestapi/resources/11-13-18-05/persons
      name: fscmrestapi-resources-11-13-18-05-persons
      description: REST surface for fscmRestApi-resources-11.13.18.05-persons.
      operations:
      - method: GET
        name: listpersons
        description: Oracle Fusion Cloud Applications List persons
        call: common-persons.listpersons
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createperson
        description: Oracle Fusion Cloud Applications Create a person
        call: common-persons.createperson
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/fscmrestapi/resources/11-13-18-05/persons/{personid}
      name: fscmrestapi-resources-11-13-18-05-persons-personid
      description: REST surface for fscmRestApi-resources-11.13.18.05-persons-Personid.
      operations:
      - method: GET
        name: getperson
        description: Oracle Fusion Cloud Applications Get a person
        call: common-persons.getperson
        with:
          Personid: rest.Personid
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateperson
        description: Oracle Fusion Cloud Applications Update a person
        call: common-persons.updateperson
        with:
          Personid: rest.Personid
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteperson
        description: Oracle Fusion Cloud Applications Delete a person
        call: common-persons.deleteperson
        with:
          Personid: rest.Personid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: common-persons-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Fusion Cloud Applications Oracle Fusion Common Features REST API — Persons. One tool
      per consumed operation, routed inline through this capability's consumes block.
    tools:
    - name: oracle-fusion-cloud-applications-list
      description: Oracle Fusion Cloud Applications List persons
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: common-persons.listpersons
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-fusion-cloud-applications-create
      description: Oracle Fusion Cloud Applications Create a person
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: common-persons.createperson
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-fusion-cloud-applications-get
      description: Oracle Fusion Cloud Applications Get a person
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: common-persons.getperson
      with:
        Personid: tools.Personid
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-fusion-cloud-applications-update
      description: Oracle Fusion Cloud Applications Update a person
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: common-persons.updateperson
      with:
        Personid: tools.Personid
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-fusion-cloud-applications-delete
      description: Oracle Fusion Cloud Applications Delete a person
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: common-persons.deleteperson
      with:
        Personid: tools.Personid
      outputParameters:
      - type: object
        mapping: $.