You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

/api/dashboards

Lists all dashboards available to the user.

Resource Information

Resource URL

https://service.belladati.com/api/dashboards

HTTP Method

GET

Parameters

Parameters

Detail

filter
(optional)

If set, the result only contains dashboards that contain the filter text in their name.
Example: Sales

offset
(optional)

Specifies the page offset if pagination is necessary.
Example: 2

size
(optional)

Specifies the number of entries on each page if pagination is necessary.
Example: 15

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?filter=my

The JSON format response:

{
  "dashboards": [
    {
      "id": 12149,
      "name": "My Dashboard",
      "lastChange": "Fri, 16 Aug 2013 14:49:02 GMT"
    }
  ],
  "offset": 0,
  "size": 100
}
  • No labels