BellaDati Technical Documentation : GET Dashboard Detail

/api/dashboards/:id

Shows detailed information about the dashboard with the specified ID.

Resource Information

Parameters

Parameters

Detail

id

ID of the dashboard to fetch. You can find the ID in the response to /api/dashboards.
Example: 123

Sample Request / Response

Using curl:

curl -H "Authorization: OAuth realm=\"https://service.belladati.com/\", oauth_consumer_key=\"myConsumer\", oauth_token=\"mh7an9dkrg59\", oauth_timestamp=\"135131231\", oauth_nonce=\"randomString\"" https://service.belladati.com/api/dashboards/12149

The JSON format response:

{
  "id": 12149,
  "name": "My Dashboard",
  "dashlets": [
    {
      "canAccessViewReport": true,
      "type": "viewReport",
      "viewReport": {
        "id": 88739,
        "name": "Sales by User",
        "type": "chart",
        "filter": {
          "drilldown": {
            "L_USER": {
              "values": [
                "john"
              ],
              "op": "IN"
            }
          }
        }
      }
    },
    {
      "canAccessViewReport": true,
      "type": "viewReport",
      "viewReport": {
        "id": 88743,
        "name": "Source Data",
        "type": "table"
      }
    }
  ]
}