Salesforce · Capability

Salesforce — Product

Salesforce — Product. 2 operations. Lead operation: Salesforce Request Product Information (no Bundles). Self-contained Naftiko capability covering one Salesforce business surface.

Run with Naftiko SalesforceProduct

What You Can Do

POST
Requestproductinformationnobundles — Salesforce Request Product Information (no Bundles)
/v1/data/v64-0/commerce/catalog-products/actions/get-products
GET
Productschedules — Salesforce Product Schedules
/v1/data/v64-0/sobjects/opportunitylineitem/{opportunity-line-item-id}/opportunitylineitemschedules

MCP Tools

salesforce-request-product-information-no

Salesforce Request Product Information (no Bundles)

salesforce-product-schedules

Salesforce Product Schedules

read-only idempotent

Capability Spec

salesforce-product.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Salesforce — Product
  description: 'Salesforce — Product. 2 operations. Lead operation: Salesforce Request Product Information (no Bundles). Self-contained
    Naftiko capability covering one Salesforce business surface.'
  tags:
  - Salesforce
  - Product
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SALESFORCE_API_KEY: SALESFORCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: salesforce-product
    baseUri: https://login.salesforce.com
    description: Salesforce — Product business capability. Self-contained, no shared references.
    resources:
    - name: data-v64.0-commerce-catalog-products-actions-get-products
      path: /data/v64.0/commerce/catalog-products/actions/get-products
      operations:
      - name: requestproductinformationnobundles
        method: POST
        description: Salesforce Request Product Information (no Bundles)
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: data-v64.0-sobjects-OpportunityLineItem-OPPORTUNITY_LINE_ITEM_ID-OpportunityLine
      path: /data/v64.0/sobjects/OpportunityLineItem/{OPPORTUNITY_LINE_ITEM_ID}/OpportunityLineItemSchedules
      operations:
      - name: productschedules
        method: GET
        description: Salesforce Product Schedules
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: OPPORTUNITY_LINE_ITEM_ID
          in: path
          type: string
          required: true
        - name: Content-Type
          in: header
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.SALESFORCE_API_KEY}}'
  exposes:
  - type: rest
    namespace: salesforce-product-rest
    port: 8080
    description: REST adapter for Salesforce — Product. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/data/v64-0/commerce/catalog-products/actions/get-products
      name: data-v64-0-commerce-catalog-products-actions-get-products
      description: REST surface for data-v64.0-commerce-catalog-products-actions-get-products.
      operations:
      - method: POST
        name: requestproductinformationnobundles
        description: Salesforce Request Product Information (no Bundles)
        call: salesforce-product.requestproductinformationnobundles
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/data/v64-0/sobjects/opportunitylineitem/{opportunity-line-item-id}/opportunitylineitemschedules
      name: data-v64-0-sobjects-opportunitylineitem-opportunity-line-item-id-opportunityline
      description: REST surface for data-v64.0-sobjects-OpportunityLineItem-OPPORTUNITY_LINE_ITEM_ID-OpportunityLine.
      operations:
      - method: GET
        name: productschedules
        description: Salesforce Product Schedules
        call: salesforce-product.productschedules
        with:
          OPPORTUNITY_LINE_ITEM_ID: rest.OPPORTUNITY_LINE_ITEM_ID
          Content-Type: rest.Content-Type
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: salesforce-product-mcp
    port: 9090
    transport: http
    description: MCP adapter for Salesforce — Product. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: salesforce-request-product-information-no
      description: Salesforce Request Product Information (no Bundles)
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: salesforce-product.requestproductinformationnobundles
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: salesforce-product-schedules
      description: Salesforce Product Schedules
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesforce-product.productschedules
      with:
        OPPORTUNITY_LINE_ITEM_ID: tools.OPPORTUNITY_LINE_ITEM_ID
        Content-Type: tools.Content-Type
      outputParameters:
      - type: object
        mapping: $.