Let the platform do the work

/Reports/:record/chart GET

Overview

An API to get chart data for a saved report.

Summary

This endpoint will return chart data for a saved report.

Request Arguments

None.

Request Example

GET /rest/v10/Reports/:id/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":[...],
        ...
    }
}