Chef Software ReportManagerService API

The ReportManagerService API from Chef Software — 1 operation(s) for reportmanagerservice.

Operations 1

GET /api/v0/reportmanager/requests List Download Report Requests #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/chef-software-reportmanagerservice-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

chef-software-reportmanagerservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: external/applications/applications.proto ApplicationsService Report Manager Service API
  version: version not set
servers:
- url: https://automate.chef.io/api/v0
tags:
- name: ReportManagerService
paths:
  /api/v0/reportmanager/requests:
    get:
      summary: List Download Report Requests
      description: 'Returns the details of the download report requests placed by the user.


        Authorization Action:

        ```

        reportmanager:requests:list

        ```'
      operationId: ReportManagerService_ListDownloadReportRequests
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/chef.automate.api.report_manager.ListDownloadReportRequestsResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/grpc.gateway.runtime.Error'
      tags:
      - ReportManagerService
components:
  schemas:
    chef.automate.api.report_manager.ListDownloadReportRequestsResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/chef.automate.api.report_manager.DownloadRequestResponse'
    google.protobuf.Any:
      type: object
      properties:
        type_url:
          type: string
        value:
          type: string
          format: byte
    chef.automate.api.report_manager.DownloadRequestResponse:
      type: object
      properties:
        acknowledgement_id:
          type: string
        status:
          type: string
        report_size:
          type: string
          format: int64
        err_message:
          type: string
        created_at:
          type: string
          format: date-time
        ended_at:
          type: string
          format: date-time
        duration:
          type: string
        report_type:
          type: string
    grpc.gateway.runtime.Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: integer
          format: int32
        message:
          type: string
        details:
          type: array
          items:
            $ref: '#/components/schemas/google.protobuf.Any'