Oracle E-Business Suite · Capability

Oracle EBS e-Commerce Gateway API — Trading Partners

Oracle EBS e-Commerce Gateway API — Trading Partners. 2 operations. Lead operation: Retrieve Trading Partners. Self-contained Naftiko capability covering one Oracle E Business Suite business surface.

Run with Naftiko Oracle E Business SuiteTrading Partners

What You Can Do

GET
Gettradingpartners — Retrieve Trading Partners
/v1/ece/tradingpartners
GET
Gettradingpartnerbyid — Retrieve a Specific Trading Partner
/v1/ece/tradingpartners/{tradingpartnerid}

MCP Tools

retrieve-trading-partners

Retrieve Trading Partners

read-only idempotent
retrieve-specific-trading-partner

Retrieve a Specific Trading Partner

read-only idempotent

Capability Spec

ecommerce-gateway-trading-partners.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle EBS e-Commerce Gateway API — Trading Partners
  description: 'Oracle EBS e-Commerce Gateway API — Trading Partners. 2 operations. Lead operation: Retrieve Trading Partners.
    Self-contained Naftiko capability covering one Oracle E Business Suite business surface.'
  tags:
  - Oracle E Business Suite
  - Trading Partners
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORACLE_E_BUSINESS_SUITE_API_KEY: ORACLE_E_BUSINESS_SUITE_API_KEY
capability:
  consumes:
  - type: http
    namespace: ecommerce-gateway-trading-partners
    baseUri: https://{instance}.oracle.com/webservices/rest
    description: Oracle EBS e-Commerce Gateway API — Trading Partners business capability. Self-contained, no shared references.
    resources:
    - name: ece-tradingPartners
      path: /ece/tradingPartners
      operations:
      - name: gettradingpartners
        method: GET
        description: Retrieve Trading Partners
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tradingPartnerId
          in: query
          type: integer
          description: Trading partner identifier
        - name: tradingPartnerName
          in: query
          type: string
          description: Trading partner name (supports wildcards)
        - name: tradingPartnerType
          in: query
          type: string
          description: Trading partner type
    - name: ece-tradingPartners-tradingPartnerId
      path: /ece/tradingPartners/{tradingPartnerId}
      operations:
      - name: gettradingpartnerbyid
        method: GET
        description: Retrieve a Specific Trading Partner
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: tradingPartnerId
          in: path
          type: integer
          required: true
    authentication:
      type: apikey
      key: accessToken
      value: '{{env.ORACLE_E_BUSINESS_SUITE_API_KEY}}'
      placement: cookie
  exposes:
  - type: rest
    namespace: ecommerce-gateway-trading-partners-rest
    port: 8080
    description: REST adapter for Oracle EBS e-Commerce Gateway API — Trading Partners. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/ece/tradingpartners
      name: ece-tradingpartners
      description: REST surface for ece-tradingPartners.
      operations:
      - method: GET
        name: gettradingpartners
        description: Retrieve Trading Partners
        call: ecommerce-gateway-trading-partners.gettradingpartners
        with:
          tradingPartnerId: rest.tradingPartnerId
          tradingPartnerName: rest.tradingPartnerName
          tradingPartnerType: rest.tradingPartnerType
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ece/tradingpartners/{tradingpartnerid}
      name: ece-tradingpartners-tradingpartnerid
      description: REST surface for ece-tradingPartners-tradingPartnerId.
      operations:
      - method: GET
        name: gettradingpartnerbyid
        description: Retrieve a Specific Trading Partner
        call: ecommerce-gateway-trading-partners.gettradingpartnerbyid
        with:
          tradingPartnerId: rest.tradingPartnerId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ecommerce-gateway-trading-partners-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle EBS e-Commerce Gateway API — Trading Partners. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: retrieve-trading-partners
      description: Retrieve Trading Partners
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ecommerce-gateway-trading-partners.gettradingpartners
      with:
        tradingPartnerId: tools.tradingPartnerId
        tradingPartnerName: tools.tradingPartnerName
        tradingPartnerType: tools.tradingPartnerType
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-specific-trading-partner
      description: Retrieve a Specific Trading Partner
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ecommerce-gateway-trading-partners.gettradingpartnerbyid
      with:
        tradingPartnerId: tools.tradingPartnerId
      outputParameters:
      - type: object
        mapping: $.