Webex · Capability

Webex Admin — Admin Audit Events

Webex Admin — Admin Audit Events. 2 operations. Lead operation: List Admin Audit Event Categories. Self-contained Naftiko capability covering one Webex business surface.

Run with Naftiko WebexAdmin Audit Events

What You Can Do

GET
Listadminauditeventcategories — List Admin Audit Event Categories
/v1/adminaudit/eventcategories
GET
Listadminauditevents — List Admin Audit Events
/v1/adminaudit/events

MCP Tools

list-admin-audit-event-categories

List Admin Audit Event Categories

read-only idempotent
list-admin-audit-events

List Admin Audit Events

read-only idempotent

Capability Spec

admin-admin-audit-events.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Webex Admin — Admin Audit Events
  description: 'Webex Admin — Admin Audit Events. 2 operations. Lead operation: List Admin Audit Event Categories. Self-contained
    Naftiko capability covering one Webex business surface.'
  tags:
  - Webex
  - Admin Audit Events
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WEBEX_API_KEY: WEBEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: admin-admin-audit-events
    baseUri: ''
    description: Webex Admin — Admin Audit Events business capability. Self-contained, no shared references.
    resources:
    - name: adminAudit-eventCategories
      path: /adminAudit/eventCategories
      operations:
      - name: listadminauditeventcategories
        method: GET
        description: List Admin Audit Event Categories
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: adminAudit-events
      path: /adminAudit/events
      operations:
      - name: listadminauditevents
        method: GET
        description: List Admin Audit Events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: query
          type: string
          description: List events in this organization, by ID.
          required: true
        - name: from
          in: query
          type: string
          description: List events which occurred after a specific date and time.
          required: true
        - name: to
          in: query
          type: string
          description: List events which occurred before a specific date and time.
          required: true
        - name: actorId
          in: query
          type: string
          description: List events performed by this person, by ID.
        - name: max
          in: query
          type: number
          description: Limit the maximum number of events in the response. The maximum value is `200`.
        - name: offset
          in: query
          type: number
          description: Offset from the first result that you want to fetch.
        - name: eventCategories
          in: query
          type: array
          description: List events, by event categories.
    authentication:
      type: bearer
      token: '{{env.WEBEX_API_KEY}}'
  exposes:
  - type: rest
    namespace: admin-admin-audit-events-rest
    port: 8080
    description: REST adapter for Webex Admin — Admin Audit Events. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/adminaudit/eventcategories
      name: adminaudit-eventcategories
      description: REST surface for adminAudit-eventCategories.
      operations:
      - method: GET
        name: listadminauditeventcategories
        description: List Admin Audit Event Categories
        call: admin-admin-audit-events.listadminauditeventcategories
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/adminaudit/events
      name: adminaudit-events
      description: REST surface for adminAudit-events.
      operations:
      - method: GET
        name: listadminauditevents
        description: List Admin Audit Events
        call: admin-admin-audit-events.listadminauditevents
        with:
          orgId: rest.orgId
          from: rest.from
          to: rest.to
          actorId: rest.actorId
          max: rest.max
          offset: rest.offset
          eventCategories: rest.eventCategories
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-admin-audit-events-mcp
    port: 9090
    transport: http
    description: MCP adapter for Webex Admin — Admin Audit Events. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-admin-audit-event-categories
      description: List Admin Audit Event Categories
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-admin-audit-events.listadminauditeventcategories
      outputParameters:
      - type: object
        mapping: $.
    - name: list-admin-audit-events
      description: List Admin Audit Events
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-admin-audit-events.listadminauditevents
      with:
        orgId: tools.orgId
        from: tools.from
        to: tools.to
        actorId: tools.actorId
        max: tools.max
        offset: tools.offset
        eventCategories: tools.eventCategories
      outputParameters:
      - type: object
        mapping: $.