/api/dashboards

REST API endpoint: /api/dashboards

/api/dashboards

GET

Summary: List all dashboards

Always filtered by owner, unless you have permission for managing dashboards AND set "show_all" parameter - then returns them all.

Parameters

NameTypeRequiredDescription
titlestringNo
title__iregexstringNo
ownerarrayNoMultiple values may be separated by commas.
orderingstringNoWhich field to use when ordering the results.
pageintegerNoA page number within the paginated result set.
page_sizeintegerNoNumber of results to return per page.
exportbooleanNoReturn exportable fields only
show_allbooleanNoDo not filter objects owned by current user

Responses

200

POST

Summary: Create a new dashboard

    You can provide full data for the new dashboard,         or you can clone existing one with source_id parameter,         pointing to another dashboard. When cloning you can also         set "clone_widgets" to true to clone all widgets - otherwise         they will be just added to the dashboard without cloning         (often read_only).
    

Parameters

NameTypeRequiredDescription
clone_widgetsbooleanNowhen cloning, clone widgets instead of adding read only
source_idintegerNoclone existing dashboard

Request Body

json
{
  "example": "request body"
}

Responses

201

/api/dashboards | LogZilla Documentation