Overview

An API to get chart data for a saved report with custom meta.

Summary

This endpoint will return chart data for a saved report.

Request Arguments

None.

Request Example

POST /rest/v11/Reports/:id/dashlet/chart

Response Arguments

Name Type Description
reportData Array Report def for the chart.
chartData Array The chart data for a report.

Response

{
    "reportData":
    {
        "label":"Accounts by Industry",
        "id":"a06b4212-3509-11e7-ab6e-f45c898a3ce7",
        ...
    },
    "chartData":
    {
        "properties":[...],
        "values":[...],
        ...
    }
}