Boomi · Capability

Boomi Platform REST API — Environments

Boomi Platform REST API — Environments. 4 operations. Lead operation: Boomi Create an environment. Self-contained Naftiko capability covering one Boomi business surface.

Run with Naftiko BoomiEnvironments

What You Can Do

POST
Createenvironment — Boomi Create an environment
/v1/environment
POST
Queryenvironments — Boomi Query environments
/v1/environment/query
GET
Getenvironment — Boomi Get an environment
/v1/environment/{id}
DELETE
Deleteenvironment — Boomi Delete an environment
/v1/environment/{id}

MCP Tools

boomi-create-environment

Boomi Create an environment

boomi-query-environments

Boomi Query environments

read-only
boomi-get-environment

Boomi Get an environment

read-only idempotent
boomi-delete-environment

Boomi Delete an environment

idempotent

Capability Spec

platform-rest-environments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Boomi Platform REST API — Environments
  description: 'Boomi Platform REST API — Environments. 4 operations. Lead operation: Boomi Create an environment. Self-contained
    Naftiko capability covering one Boomi business surface.'
  tags:
  - Boomi
  - Environments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BOOMI_API_KEY: BOOMI_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-rest-environments
    baseUri: https://api.boomi.com/api/rest/v1/{accountId}
    description: Boomi Platform REST API — Environments business capability. Self-contained, no shared references.
    resources:
    - name: Environment
      path: /Environment
      operations:
      - name: createenvironment
        method: POST
        description: Boomi Create an environment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: Environment-query
      path: /Environment/query
      operations:
      - name: queryenvironments
        method: POST
        description: Boomi Query environments
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: Environment-id
      path: /Environment/{id}
      operations:
      - name: getenvironment
        method: GET
        description: Boomi Get an environment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deleteenvironment
        method: DELETE
        description: Boomi Delete an environment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.BOOMI_USER}}'
      password: '{{env.BOOMI_PASS}}'
  exposes:
  - type: rest
    namespace: platform-rest-environments-rest
    port: 8080
    description: REST adapter for Boomi Platform REST API — Environments. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/environment
      name: environment
      description: REST surface for Environment.
      operations:
      - method: POST
        name: createenvironment
        description: Boomi Create an environment
        call: platform-rest-environments.createenvironment
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/environment/query
      name: environment-query
      description: REST surface for Environment-query.
      operations:
      - method: POST
        name: queryenvironments
        description: Boomi Query environments
        call: platform-rest-environments.queryenvironments
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/environment/{id}
      name: environment-id
      description: REST surface for Environment-id.
      operations:
      - method: GET
        name: getenvironment
        description: Boomi Get an environment
        call: platform-rest-environments.getenvironment
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteenvironment
        description: Boomi Delete an environment
        call: platform-rest-environments.deleteenvironment
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-rest-environments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Boomi Platform REST API — Environments. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: boomi-create-environment
      description: Boomi Create an environment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-rest-environments.createenvironment
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: boomi-query-environments
      description: Boomi Query environments
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: platform-rest-environments.queryenvironments
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: boomi-get-environment
      description: Boomi Get an environment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-rest-environments.getenvironment
      outputParameters:
      - type: object
        mapping: $.
    - name: boomi-delete-environment
      description: Boomi Delete an environment
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: platform-rest-environments.deleteenvironment
      outputParameters:
      - type: object
        mapping: $.