Cisco Expressway · Capability

Cisco Expressway Status API — Calls

Cisco Expressway Status API — Calls. 2 operations. Lead operation: Cisco Expressway Retrieve call history. Self-contained Naftiko capability covering one Cisco Expressway business surface.

Run with Naftiko Cisco ExpresswayCalls

What You Can Do

GET
Getcallhistory — Cisco Expressway Retrieve call history
/v1/status/common/callhistory
GET
Listactivecalls — Cisco Expressway List all active calls
/v1/status/common/calls

MCP Tools

cisco-expressway-retrieve-call-history

Cisco Expressway Retrieve call history

read-only idempotent
cisco-expressway-list-all-active

Cisco Expressway List all active calls

read-only idempotent

Capability Spec

status-calls.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Cisco Expressway Status API — Calls
  description: 'Cisco Expressway Status API — Calls. 2 operations. Lead operation: Cisco Expressway Retrieve call history.
    Self-contained Naftiko capability covering one Cisco Expressway business surface.'
  tags:
  - Cisco Expressway
  - Calls
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CISCO_EXPRESSWAY_API_KEY: CISCO_EXPRESSWAY_API_KEY
capability:
  consumes:
  - type: http
    namespace: status-calls
    baseUri: https://{host}/api
    description: Cisco Expressway Status API — Calls business capability. Self-contained, no shared references.
    resources:
    - name: status-common-callhistory
      path: /status/common/callhistory
      operations:
      - name: getcallhistory
        method: GET
        description: Cisco Expressway Retrieve call history
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: filter
          in: query
          type: string
          description: Filter type for call history records. Supported values include get_all_records, get_records_for_interval,
            get_records_for_filter, and get_all_csv_records.
        - name: start_time
          in: query
          type: string
          description: Start time for interval-based filtering in ISO 8601 format. Used with get_records_for_interval.
        - name: end_time
          in: query
          type: string
          description: End time for interval-based filtering in ISO 8601 format. Used with get_records_for_interval.
    - name: status-common-calls
      path: /status/common/calls
      operations:
      - name: listactivecalls
        method: GET
        description: Cisco Expressway List all active calls
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.CISCO_EXPRESSWAY_USER}}'
      password: '{{env.CISCO_EXPRESSWAY_PASS}}'
  exposes:
  - type: rest
    namespace: status-calls-rest
    port: 8080
    description: REST adapter for Cisco Expressway Status API — Calls. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/status/common/callhistory
      name: status-common-callhistory
      description: REST surface for status-common-callhistory.
      operations:
      - method: GET
        name: getcallhistory
        description: Cisco Expressway Retrieve call history
        call: status-calls.getcallhistory
        with:
          filter: rest.filter
          start_time: rest.start_time
          end_time: rest.end_time
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/status/common/calls
      name: status-common-calls
      description: REST surface for status-common-calls.
      operations:
      - method: GET
        name: listactivecalls
        description: Cisco Expressway List all active calls
        call: status-calls.listactivecalls
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: status-calls-mcp
    port: 9090
    transport: http
    description: MCP adapter for Cisco Expressway Status API — Calls. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: cisco-expressway-retrieve-call-history
      description: Cisco Expressway Retrieve call history
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: status-calls.getcallhistory
      with:
        filter: tools.filter
        start_time: tools.start_time
        end_time: tools.end_time
      outputParameters:
      - type: object
        mapping: $.
    - name: cisco-expressway-list-all-active
      description: Cisco Expressway List all active calls
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: status-calls.listactivecalls
      outputParameters:
      - type: object
        mapping: $.