27 lines
447 B
YAML
27 lines
447 B
YAML
Gets a widget
|
|
---
|
|
tags:
|
|
- Dashboard
|
|
parameters:
|
|
- in: path
|
|
name: dashboard_id
|
|
required: true
|
|
type: integer
|
|
description: Id of the dashboard
|
|
- in: path
|
|
name: widget_id
|
|
required: true
|
|
type: integer
|
|
description: Id of the widget
|
|
responses:
|
|
200:
|
|
description: Success
|
|
schema:
|
|
type: object
|
|
required:
|
|
- content
|
|
properties:
|
|
content:
|
|
$ref: '#/definitions/Widget'
|
|
|