Overview

Save report dasboard.

Summary

This endpoint will save the report panel with all customizations

Request Arguments

Name Type Description
panels Array Panels to show

Request Example

PUT /rest/v10/Reports/panel/:id

{
    "panels": [
        {
            "layout": {
                "type": "report-chart",
                "label": "CHART",
                "limit": 20
            },
            "width": "5",
            "height": "10",
            "x": "0",
            "y": "0",
            "id": "e08fbfd3-61f1-4564-b6f6-2ee29f7777ad"
        },
        {
            "layout": {
                "type": "report-table",
                "label": "LIST",
                "limit": 20
            },
            "width": 5,
            "height": 8,
            "x": 5,
            "y": 0,
            "id": "38a81c80-d051-44c3-9936-d06776360361"
        },
        {
            "layout": {
                "type": "report-filters",
                "label": "FILTERS",
                "limit": 20
            },
            "width": "2",
            "height": "10",
            "x": "10",
            "y": "0",
            "id": "ad81cd22-80cb-44b5-9bfc-687e57b8b8e2"
        }
    ]
}

Response Arguments

Name Type Description
panels Array Panels to show

Response

{
    "panels":[
        {
            "layout":{
            "type":"report-chart",
            "label":"CHART",
            "limit":20
            },
            "width":"5",
            "height":"10",
            "x":"0",
            "y":"0",
            "id":"e08fbfd3-61f1-4564-b6f6-2ee29f7777ad"
        },
        {
            "layout":{
            "type":"report-table",
            "label":"LIST",
            "limit":20
            },
            "width":5,
            "height":8,
            "x":5,
            "y":0,
            "id":"38a81c80-d051-44c3-9936-d06776360361"
        },
        {
            "layout":{
            "type":"report-filters",
            "label":"FILTERS",
            "limit":20
            },
            "width":"2",
            "height":"10",
            "x":"10",
            "y":"0",
            "id":"ad81cd22-80cb-44b5-9bfc-687e57b8b8e2"
        }
    ]
}