Webex · Capability

Webex Admin — Settings

Webex Admin — Settings. 2 operations. Lead operation: Create or Update an Organization Setting. Self-contained Naftiko capability covering one Webex business surface.

Run with Naftiko WebexSettings

What You Can Do

POST
Createorupdateanorganizationsetting — Create or Update an Organization Setting
/v1/settings/organizations/{orgid}/settings
GET
Getanorganizationsetting — Get an Organization Setting
/v1/settings/organizations/{orgid}/settings/{settingkey}

MCP Tools

create-update-organization-setting

Create or Update an Organization Setting

get-organization-setting

Get an Organization Setting

read-only idempotent

Capability Spec

admin-settings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Webex Admin — Settings
  description: 'Webex Admin — Settings. 2 operations. Lead operation: Create or Update an Organization Setting. Self-contained
    Naftiko capability covering one Webex business surface.'
  tags:
  - Webex
  - Settings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WEBEX_API_KEY: WEBEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: admin-settings
    baseUri: ''
    description: Webex Admin — Settings business capability. Self-contained, no shared references.
    resources:
    - name: settings-organizations-orgId-settings
      path: /settings/organizations/{orgId}/settings
      operations:
      - name: createorupdateanorganizationsetting
        method: POST
        description: Create or Update an Organization Setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: path
          type: string
          description: The Webex organization id in Control Hub UUID or API orgId format.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: settings-organizations-orgId-settings-settingKey
      path: /settings/organizations/{orgId}/settings/{settingKey}
      operations:
      - name: getanorganizationsetting
        method: GET
        description: Get an Organization Setting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: path
          type: string
          description: The Webex organization id in Control Hub UUID or API orgId format.
          required: true
        - name: settingKey
          in: path
          type: string
          description: The key of the setting.
          required: true
    authentication:
      type: bearer
      token: '{{env.WEBEX_API_KEY}}'
  exposes:
  - type: rest
    namespace: admin-settings-rest
    port: 8080
    description: REST adapter for Webex Admin — Settings. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/settings/organizations/{orgid}/settings
      name: settings-organizations-orgid-settings
      description: REST surface for settings-organizations-orgId-settings.
      operations:
      - method: POST
        name: createorupdateanorganizationsetting
        description: Create or Update an Organization Setting
        call: admin-settings.createorupdateanorganizationsetting
        with:
          orgId: rest.orgId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/settings/organizations/{orgid}/settings/{settingkey}
      name: settings-organizations-orgid-settings-settingkey
      description: REST surface for settings-organizations-orgId-settings-settingKey.
      operations:
      - method: GET
        name: getanorganizationsetting
        description: Get an Organization Setting
        call: admin-settings.getanorganizationsetting
        with:
          orgId: rest.orgId
          settingKey: rest.settingKey
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-settings-mcp
    port: 9090
    transport: http
    description: MCP adapter for Webex Admin — Settings. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: create-update-organization-setting
      description: Create or Update an Organization Setting
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: admin-settings.createorupdateanorganizationsetting
      with:
        orgId: tools.orgId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-organization-setting
      description: Get an Organization Setting
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-settings.getanorganizationsetting
      with:
        orgId: tools.orgId
        settingKey: tools.settingKey
      outputParameters:
      - type: object
        mapping: $.