Coveo · Capability

Coveo Usage Analytics Read API — Reports API - Version 14

Coveo Usage Analytics Read API — Reports API - Version 14. 9 operations. Lead operation: Get the Persisted Reports of One or All Types. Self-contained Naftiko capability covering one Coveo business surface.

Run with Naftiko CoveoUsage Analytics ReadReports API - Version 14

What You Can Do

GET
Getv14reports — Get the Persisted Reports of One or All Types
/v1/v14/reports
POST
Postv14reports — Create a Report
/v1/v14/reports
GET
Getv14reportsmonitoringhealth — Health Check for the Reports Service
/v1/v14/reports/monitoring/health
GET
Getv14reportsstatus — Get the Reports Service Status
/v1/v14/reports/status
GET
Getv14reportsreportid — Get a Report
/v1/v14/reports/{reportid}
PUT
Putv14reportsreportid — Update a Report
/v1/v14/reports/{reportid}
DELETE
Deletev14reportsreportid — Delete a Report
/v1/v14/reports/{reportid}
GET
Getv14reportsreportidusers — Gets the Users That Can View the Specified Report.
/v1/v14/reports/{reportid}/users
PUT
Putv14reportsreportidusers — Set the Users Who Are Allowed to View a Report
/v1/v14/reports/{reportid}/users

MCP Tools

get-persisted-reports-one-all

Get the Persisted Reports of One or All Types

read-only idempotent
create-report

Create a Report

health-check-reports-service

Health Check for the Reports Service

read-only idempotent
get-reports-service-status

Get the Reports Service Status

read-only idempotent
get-report

Get a Report

read-only idempotent
update-report

Update a Report

idempotent
delete-report

Delete a Report

idempotent
gets-users-that-can-view

Gets the Users That Can View the Specified Report.

read-only idempotent
set-users-who-are-allowed

Set the Users Who Are Allowed to View a Report

idempotent

Capability Spec

usage-analytics-read-reports-api-version-14.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Coveo Usage Analytics Read API — Reports API - Version 14
  description: 'Coveo Usage Analytics Read API — Reports API - Version 14. 9 operations. Lead operation: Get the Persisted
    Reports of One or All Types. Self-contained Naftiko capability covering one Coveo business surface.'
  tags:
  - Coveo
  - Usage Analytics Read
  - Reports API - Version 14
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    COVEO_API_KEY: COVEO_API_KEY
capability:
  consumes:
  - type: http
    namespace: usage-analytics-read-reports-api-version-14
    baseUri: https://analytics.cloud.coveo.com/rest/ua
    description: Coveo Usage Analytics Read API — Reports API - Version 14 business capability. Self-contained, no shared
      references.
    authentication:
      type: bearer
      token: '{{env.COVEO_API_KEY}}'
    resources:
    - name: v14-reports
      path: /v14/reports
      operations:
      - name: getv14reports
        method: GET
        description: Get the Persisted Reports of One or All Types
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: type
          in: query
          type: string
          description: The type of the report. Must be either 'explorer' or 'dashboard'.
        - name: org
          in: query
          type: string
          description: The name of the organization (Coveo Cloud V2 only)
        - name: includeConfig
          in: query
          type: boolean
          description: Whether to include the detailed configuration of the report in the response.
      - name: postv14reports
        method: POST
        description: Create a Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: org
          in: query
          type: string
          description: The name of the organization (Coveo Cloud V2 only)
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v14-reports-monitoring-health
      path: /v14/reports/monitoring/health
      operations:
      - name: getv14reportsmonitoringhealth
        method: GET
        description: Health Check for the Reports Service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v14-reports-status
      path: /v14/reports/status
      operations:
      - name: getv14reportsstatus
        method: GET
        description: Get the Reports Service Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v14-reports-reportId
      path: /v14/reports/{reportId}
      operations:
      - name: getv14reportsreportid
        method: GET
        description: Get a Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: reportId
          in: path
          type: string
          description: The unique identifier of a report. This id is generated by the server when creating a report.
          required: true
        - name: org
          in: query
          type: string
          description: The name of the organization (Coveo Cloud V2 only)
      - name: putv14reportsreportid
        method: PUT
        description: Update a Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: reportId
          in: path
          type: string
          description: The unique identifier of a report. This id is generated by the server when creating a report.
          required: true
        - name: org
          in: query
          type: string
          description: The name of the organization (Coveo Cloud V2 only)
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletev14reportsreportid
        method: DELETE
        description: Delete a Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: reportId
          in: path
          type: string
          description: The unique identifier of a report. This id is generated by the server when creating a report.
          required: true
        - name: org
          in: query
          type: string
          description: The name of the organization (Coveo Cloud V2 only)
    - name: v14-reports-reportId-users
      path: /v14/reports/{reportId}/users
      operations:
      - name: getv14reportsreportidusers
        method: GET
        description: Gets the Users That Can View the Specified Report.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: reportId
          in: path
          type: string
          description: The unique identifier of a report. This id is generated by the server when creating a report.
          required: true
        - name: org
          in: query
          type: string
          description: The name of the organization (Coveo Cloud V2 only)
      - name: putv14reportsreportidusers
        method: PUT
        description: Set the Users Who Are Allowed to View a Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: reportId
          in: path
          type: string
          description: The unique identifier of a report. This id is generated by the server when creating a report.
          required: true
        - name: org
          in: query
          type: string
          description: The name of the organization (Coveo Cloud V2 only)
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: usage-analytics-read-reports-api-version-14-rest
    port: 8080
    description: REST adapter for Coveo Usage Analytics Read API — Reports API - Version 14. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/v14/reports
      name: v14-reports
      description: REST surface for v14-reports.
      operations:
      - method: GET
        name: getv14reports
        description: Get the Persisted Reports of One or All Types
        call: usage-analytics-read-reports-api-version-14.getv14reports
        with:
          type: rest.type
          org: rest.org
          includeConfig: rest.includeConfig
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postv14reports
        description: Create a Report
        call: usage-analytics-read-reports-api-version-14.postv14reports
        with:
          org: rest.org
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v14/reports/monitoring/health
      name: v14-reports-monitoring-health
      description: REST surface for v14-reports-monitoring-health.
      operations:
      - method: GET
        name: getv14reportsmonitoringhealth
        description: Health Check for the Reports Service
        call: usage-analytics-read-reports-api-version-14.getv14reportsmonitoringhealth
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v14/reports/status
      name: v14-reports-status
      description: REST surface for v14-reports-status.
      operations:
      - method: GET
        name: getv14reportsstatus
        description: Get the Reports Service Status
        call: usage-analytics-read-reports-api-version-14.getv14reportsstatus
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v14/reports/{reportid}
      name: v14-reports-reportid
      description: REST surface for v14-reports-reportId.
      operations:
      - method: GET
        name: getv14reportsreportid
        description: Get a Report
        call: usage-analytics-read-reports-api-version-14.getv14reportsreportid
        with:
          reportId: rest.reportId
          org: rest.org
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: putv14reportsreportid
        description: Update a Report
        call: usage-analytics-read-reports-api-version-14.putv14reportsreportid
        with:
          reportId: rest.reportId
          org: rest.org
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletev14reportsreportid
        description: Delete a Report
        call: usage-analytics-read-reports-api-version-14.deletev14reportsreportid
        with:
          reportId: rest.reportId
          org: rest.org
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v14/reports/{reportid}/users
      name: v14-reports-reportid-users
      description: REST surface for v14-reports-reportId-users.
      operations:
      - method: GET
        name: getv14reportsreportidusers
        description: Gets the Users That Can View the Specified Report.
        call: usage-analytics-read-reports-api-version-14.getv14reportsreportidusers
        with:
          reportId: rest.reportId
          org: rest.org
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: putv14reportsreportidusers
        description: Set the Users Who Are Allowed to View a Report
        call: usage-analytics-read-reports-api-version-14.putv14reportsreportidusers
        with:
          reportId: rest.reportId
          org: rest.org
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: usage-analytics-read-reports-api-version-14-mcp
    port: 9090
    transport: http
    description: MCP adapter for Coveo Usage Analytics Read API — Reports API - Version 14. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: get-persisted-reports-one-all
      description: Get the Persisted Reports of One or All Types
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: usage-analytics-read-reports-api-version-14.getv14reports
      with:
        type: tools.type
        org: tools.org
        includeConfig: tools.includeConfig
      outputParameters:
      - type: object
        mapping: $.
    - name: create-report
      description: Create a Report
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: usage-analytics-read-reports-api-version-14.postv14reports
      with:
        org: tools.org
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: health-check-reports-service
      description: Health Check for the Reports Service
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: usage-analytics-read-reports-api-version-14.getv14reportsmonitoringhealth
      outputParameters:
      - type: object
        mapping: $.
    - name: get-reports-service-status
      description: Get the Reports Service Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: usage-analytics-read-reports-api-version-14.getv14reportsstatus
      outputParameters:
      - type: object
        mapping: $.
    - name: get-report
      description: Get a Report
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: usage-analytics-read-reports-api-version-14.getv14reportsreportid
      with:
        reportId: tools.reportId
        org: tools.org
      outputParameters:
      - type: object
        mapping: $.
    - name: update-report
      description: Update a Report
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: usage-analytics-read-reports-api-version-14.putv14reportsreportid
      with:
        reportId: tools.reportId
        org: tools.org
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-report
      description: Delete a Report
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: usage-analytics-read-reports-api-version-14.deletev14reportsreportid
      with:
        reportId: tools.reportId
        org: tools.org
      outputParameters:
      - type: object
        mapping: $.
    - name: gets-users-that-can-view
      description: Gets the Users That Can View the Specified Report.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: usage-analytics-read-reports-api-version-14.getv14reportsreportidusers
      with:
        reportId: tools.reportId
        org: tools.org
      outputParameters:
      - type: object
        mapping: $.
    - name: set-users-who-are-allowed
      description: Set the Users Who Are Allowed to View a Report
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: usage-analytics-read-reports-api-version-14.putv14reportsreportidusers
      with:
        reportId: tools.reportId
        org: tools.org
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.