Coveo · Capability

Coveo Usage Analytics Read API — Reports API - Version 15

Coveo Usage Analytics Read API — Reports API - Version 15. 13 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 15

What You Can Do

GET
Getv15reports — Get the Persisted Reports of One or All Types
/v1/v15/reports
POST
Postv15reports — Create a Report
/v1/v15/reports
GET
Getv15reportsmonitoringhealth — Health Check for the Reports Service
/v1/v15/reports/monitoring/health
GET
Getv15reportsstatus — Get the Reports Service Status
/v1/v15/reports/status
GET
Getv15reportstemplates — Get Metadata About Available Report Templates
/v1/v15/reports/templates
GET
Getv15reportstemplatestemplateid — Get a Report Template
/v1/v15/reports/templates/{templateid}
GET
Getv15reportsreportid — Get a Report
/v1/v15/reports/{reportid}
PUT
Putv15reportsreportid — Update a Report
/v1/v15/reports/{reportid}
DELETE
Deletev15reportsreportid — Delete a Report
/v1/v15/reports/{reportid}
GET
Getv15reportsreportidaccess — Get the Users and Groups Who Can View a Report
/v1/v15/reports/{reportid}/access
PUT
Putv15reportsreportidaccess — Set the Users and Groups Who Are Allowed to View a Report
/v1/v15/reports/{reportid}/access
GET
Getv15reportsreportidusers — Get the Users Who Can View a Report
/v1/v15/reports/{reportid}/users
PUT
Putv15reportsreportidusers — Set the Users Who Are Allowed to View a Report
/v1/v15/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-metadata-about-available-report

Get Metadata About Available Report Templates

read-only idempotent
get-report-template

Get a Report Template

read-only idempotent
get-report

Get a Report

read-only idempotent
update-report

Update a Report

idempotent
delete-report

Delete a Report

idempotent
get-users-and-groups-who

Get the Users and Groups Who Can View a Report

read-only idempotent
set-users-and-groups-who

Set the Users and Groups Who Are Allowed to View a Report

idempotent
get-users-who-can-view

Get the Users Who Can View a 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-15.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Coveo Usage Analytics Read API — Reports API - Version 15
  description: 'Coveo Usage Analytics Read API — Reports API - Version 15. 13 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 15
  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-15
    baseUri: https://analytics.cloud.coveo.com/rest/ua
    description: Coveo Usage Analytics Read API — Reports API - Version 15 business capability. Self-contained, no shared
      references.
    authentication:
      type: bearer
      token: '{{env.COVEO_API_KEY}}'
    resources:
    - name: v15-reports
      path: /v15/reports
      operations:
      - name: getv15reports
        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: postv15reports
        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: v15-reports-monitoring-health
      path: /v15/reports/monitoring/health
      operations:
      - name: getv15reportsmonitoringhealth
        method: GET
        description: Health Check for the Reports Service
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v15-reports-status
      path: /v15/reports/status
      operations:
      - name: getv15reportsstatus
        method: GET
        description: Get the Reports Service Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v15-reports-templates
      path: /v15/reports/templates
      operations:
      - name: getv15reportstemplates
        method: GET
        description: Get Metadata About Available Report Templates
        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'.
          required: true
        - name: includeMetadata
          in: query
          type: boolean
          description: Whether to include metadata about the report template.
        - name: org
          in: query
          type: string
          description: The name of the organization (Coveo Cloud V2 only)
    - name: v15-reports-templates-templateId
      path: /v15/reports/templates/{templateId}
      operations:
      - name: getv15reportstemplatestemplateid
        method: GET
        description: Get a Report Template
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: templateId
          in: path
          type: string
          description: The unique identifier of a template.
          required: true
        - name: includeMetadata
          in: query
          type: boolean
          description: Whether to include metadata about the report template.
        - name: org
          in: query
          type: string
          description: The name of the organization (Coveo Cloud V2 only)
    - name: v15-reports-reportId
      path: /v15/reports/{reportId}
      operations:
      - name: getv15reportsreportid
        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: tz
          in: query
          type: string
          description: Timezone used for calculations.
      - name: putv15reportsreportid
        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: deletev15reportsreportid
        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: v15-reports-reportId-access
      path: /v15/reports/{reportId}/access
      operations:
      - name: getv15reportsreportidaccess
        method: GET
        description: Get the Users and Groups Who Can 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: putv15reportsreportidaccess
        method: PUT
        description: Set the Users and Groups 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
    - name: v15-reports-reportId-users
      path: /v15/reports/{reportId}/users
      operations:
      - name: getv15reportsreportidusers
        method: GET
        description: Get the Users Who Can 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: putv15reportsreportidusers
        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-15-rest
    port: 8080
    description: REST adapter for Coveo Usage Analytics Read API — Reports API - Version 15. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/v15/reports
      name: v15-reports
      description: REST surface for v15-reports.
      operations:
      - method: GET
        name: getv15reports
        description: Get the Persisted Reports of One or All Types
        call: usage-analytics-read-reports-api-version-15.getv15reports
        with:
          type: rest.type
          org: rest.org
          includeConfig: rest.includeConfig
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postv15reports
        description: Create a Report
        call: usage-analytics-read-reports-api-version-15.postv15reports
        with:
          org: rest.org
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v15/reports/monitoring/health
      name: v15-reports-monitoring-health
      description: REST surface for v15-reports-monitoring-health.
      operations:
      - method: GET
        name: getv15reportsmonitoringhealth
        description: Health Check for the Reports Service
        call: usage-analytics-read-reports-api-version-15.getv15reportsmonitoringhealth
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v15/reports/status
      name: v15-reports-status
      description: REST surface for v15-reports-status.
      operations:
      - method: GET
        name: getv15reportsstatus
        description: Get the Reports Service Status
        call: usage-analytics-read-reports-api-version-15.getv15reportsstatus
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v15/reports/templates
      name: v15-reports-templates
      description: REST surface for v15-reports-templates.
      operations:
      - method: GET
        name: getv15reportstemplates
        description: Get Metadata About Available Report Templates
        call: usage-analytics-read-reports-api-version-15.getv15reportstemplates
        with:
          type: rest.type
          includeMetadata: rest.includeMetadata
          org: rest.org
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v15/reports/templates/{templateid}
      name: v15-reports-templates-templateid
      description: REST surface for v15-reports-templates-templateId.
      operations:
      - method: GET
        name: getv15reportstemplatestemplateid
        description: Get a Report Template
        call: usage-analytics-read-reports-api-version-15.getv15reportstemplatestemplateid
        with:
          templateId: rest.templateId
          includeMetadata: rest.includeMetadata
          org: rest.org
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v15/reports/{reportid}
      name: v15-reports-reportid
      description: REST surface for v15-reports-reportId.
      operations:
      - method: GET
        name: getv15reportsreportid
        description: Get a Report
        call: usage-analytics-read-reports-api-version-15.getv15reportsreportid
        with:
          reportId: rest.reportId
          org: rest.org
          tz: rest.tz
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: putv15reportsreportid
        description: Update a Report
        call: usage-analytics-read-reports-api-version-15.putv15reportsreportid
        with:
          reportId: rest.reportId
          org: rest.org
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletev15reportsreportid
        description: Delete a Report
        call: usage-analytics-read-reports-api-version-15.deletev15reportsreportid
        with:
          reportId: rest.reportId
          org: rest.org
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v15/reports/{reportid}/access
      name: v15-reports-reportid-access
      description: REST surface for v15-reports-reportId-access.
      operations:
      - method: GET
        name: getv15reportsreportidaccess
        description: Get the Users and Groups Who Can View a Report
        call: usage-analytics-read-reports-api-version-15.getv15reportsreportidaccess
        with:
          reportId: rest.reportId
          org: rest.org
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: putv15reportsreportidaccess
        description: Set the Users and Groups Who Are Allowed to View a Report
        call: usage-analytics-read-reports-api-version-15.putv15reportsreportidaccess
        with:
          reportId: rest.reportId
          org: rest.org
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v15/reports/{reportid}/users
      name: v15-reports-reportid-users
      description: REST surface for v15-reports-reportId-users.
      operations:
      - method: GET
        name: getv15reportsreportidusers
        description: Get the Users Who Can View a Report
        call: usage-analytics-read-reports-api-version-15.getv15reportsreportidusers
        with:
          reportId: rest.reportId
          org: rest.org
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: putv15reportsreportidusers
        description: Set the Users Who Are Allowed to View a Report
        call: usage-analytics-read-reports-api-version-15.putv15reportsreportidusers
        with:
          reportId: rest.reportId
          org: rest.org
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: usage-analytics-read-reports-api-version-15-mcp
    port: 9090
    transport: http
    description: MCP adapter for Coveo Usage Analytics Read API — Reports API - Version 15. 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-15.getv15reports
      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-15.postv15reports
      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-15.getv15reportsmonitoringhealth
      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-15.getv15reportsstatus
      outputParameters:
      - type: object
        mapping: $.
    - name: get-metadata-about-available-report
      description: Get Metadata About Available Report Templates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: usage-analytics-read-reports-api-version-15.getv15reportstemplates
      with:
        type: tools.type
        includeMetadata: tools.includeMetadata
        org: tools.org
      outputParameters:
      - type: object
        mapping: $.
    - name: get-report-template
      description: Get a Report Template
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: usage-analytics-read-reports-api-version-15.getv15reportstemplatestemplateid
      with:
        templateId: tools.templateId
        includeMetadata: tools.includeMetadata
        org: tools.org
      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-15.getv15reportsreportid
      with:
        reportId: tools.reportId
        org: tools.org
        tz: tools.tz
      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-15.putv15reportsreportid
      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-15.deletev15reportsreportid
      with:
        reportId: tools.reportId
        org: tools.org
      outputParameters:
      - type: object
        mapping: $.
    - name: get-users-and-groups-who
      description: Get the Users and Groups Who Can View a Report
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: usage-analytics-read-reports-api-version-15.getv15reportsreportidaccess
      with:
        reportId: tools.reportId
        org: tools.org
      outputParameters:
      - type: object
        mapping: $.
    - name: set-users-and-groups-who
      description: Set the Users and Groups Who Are Allowed to View a Report
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: usage-analytics-read-reports-api-version-15.putv15reportsreportidaccess
      with:
        reportId: tools.reportId
        org: tools.org
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-users-who-can-view
      description: Get the Users Who Can View a Report
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: usage-analytics-read-reports-api-version-15.getv15reportsreportidusers
      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-15.putv15reportsreportidusers
      with:
        reportId: tools.reportId
        org: tools.org
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.