Salesforce Net Zero Cloud REST API — Waste Management

Salesforce Net Zero Cloud REST API — Waste Management. 2 operations. Lead operation: List Waste Disposal Records. Self-contained Naftiko capability covering one Salesforce Net Zero Cloud business surface.

Run with Naftiko Salesforce Net Zero CloudWaste Management

What You Can Do

GET
Listwastedisposalrecords — List Waste Disposal Records
/v1/sobjects/wastedisposal
POST
Createwastedisposalrecord — Create Waste Disposal Record
/v1/sobjects/wastedisposal

MCP Tools

list-waste-disposal-records

List Waste Disposal Records

read-only idempotent
create-waste-disposal-record

Create Waste Disposal Record

Capability Spec

rest-waste-management.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Salesforce Net Zero Cloud REST API — Waste Management
  description: 'Salesforce Net Zero Cloud REST API — Waste Management. 2 operations. Lead operation: List Waste Disposal Records.
    Self-contained Naftiko capability covering one Salesforce Net Zero Cloud business surface.'
  tags:
  - Salesforce Net Zero Cloud
  - Waste Management
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SALESFORCE_NET_ZERO_CLOUD_API_KEY: SALESFORCE_NET_ZERO_CLOUD_API_KEY
capability:
  consumes:
  - type: http
    namespace: rest-waste-management
    baseUri: https://{instance}.my.salesforce.com/services/data/v59.0
    description: Salesforce Net Zero Cloud REST API — Waste Management business capability. Self-contained, no shared references.
    resources:
    - name: sobjects-WasteDisposal
      path: /sobjects/WasteDisposal
      operations:
      - name: listwastedisposalrecords
        method: GET
        description: List Waste Disposal Records
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createwastedisposalrecord
        method: POST
        description: Create Waste Disposal Record
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.SALESFORCE_NET_ZERO_CLOUD_API_KEY}}'
  exposes:
  - type: rest
    namespace: rest-waste-management-rest
    port: 8080
    description: REST adapter for Salesforce Net Zero Cloud REST API — Waste Management. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/sobjects/wastedisposal
      name: sobjects-wastedisposal
      description: REST surface for sobjects-WasteDisposal.
      operations:
      - method: GET
        name: listwastedisposalrecords
        description: List Waste Disposal Records
        call: rest-waste-management.listwastedisposalrecords
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createwastedisposalrecord
        description: Create Waste Disposal Record
        call: rest-waste-management.createwastedisposalrecord
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rest-waste-management-mcp
    port: 9090
    transport: http
    description: MCP adapter for Salesforce Net Zero Cloud REST API — Waste Management. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-waste-disposal-records
      description: List Waste Disposal Records
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rest-waste-management.listwastedisposalrecords
      outputParameters:
      - type: object
        mapping: $.
    - name: create-waste-disposal-record
      description: Create Waste Disposal Record
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rest-waste-management.createwastedisposalrecord
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.