BellaDati Technical Documentation : GET Report Detail

/api/reports/:id

Shows detailed information about the report with the specified ID.

Resource Information

Parameters

Parameters

Detail

id

ID of the report to fetch. You can find the ID in the response to /api/reports.
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/reports/7741

The JSON format response:

{
  "id" : 7741,
  "views" : [
    {
      "id" : 24530,
      "name" : "Data Overview",
      "type" : "table"
    }
  ],
  "name" : "My Report",
  "owner" : "John Smith",
  "dataSet" : {
    "id" : 1234,
    "name" : "Data set name",
    "timeSupported" : false,
    "drilldownAttributes" : [ ],
    "dateSupported" : false
  },
  "lastChange" : "Tue, 22 May 2012 17:16:31 GMT"
}