Hive Dashboard Widgets API

The Dashboard Widgets API from Hive — 2 operation(s) for dashboard widgets.

OpenAPI Specification

hive-dashboard-widgets-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Hive Public Actions Dashboard Widgets API
  description: 'REST API for the Hive (hive.com) work-management platform. Provides

    CRUD access to workspaces, projects, actions (tasks), users, teams,

    comments, attachments, labels, custom fields, sprints, dashboards,

    webhooks, and workflows. Endpoint list derived from

    https://developers.hive.com/llms.txt.

    '
  version: '1.0'
  contact:
    name: Hive Developers
    url: https://developers.hive.com/reference/introduction
servers:
- url: https://app.hive.com/api/v1
  description: Hive Public API v1
security:
- ApiKeyAuth: []
tags:
- name: Dashboard Widgets
paths:
  /dashboard_widgets/{widgetId}/data:
    parameters:
    - name: widgetId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get widget data
      operationId: getWidgetData
      responses:
        '200':
          description: OK
      tags:
      - Dashboard Widgets
  /dashboard_widgets/{widgetId}/export:
    parameters:
    - name: widgetId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Export widget data
      operationId: exportWidgetData
      responses:
        '200':
          description: OK
      tags:
      - Dashboard Widgets
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api_key
      description: Workspace-scoped API token issued from Hive admin settings.