Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
Get List of Recently Used Dashboards
Use a GET request on the Dashboard List resource to retrieve a list of recently used dashboards. The list is sorted by the date when the dashboard was last refreshed.
Example Usage
1/services/data/v35.0/analytics/dashboardsExample Response Body
In this case, the Dashboard resource returns information for two dashboards. Each URL handle stores the status or results for the dashboard.
1[ {
2 "id" : "01ZD00000007QeuMAE",
3 "name" : "Adoption Dashboard",
4 "statusUrl" : "/services/data/v35.0/analytics/dashboards/01ZD00000007QeuMAE/status",
5 "url" : "/services/data/v35.0/analytics/dashboards/01ZD00000007QeuMAE"
6}, {
7 "id" : "01ZD00000007QevMAE",
8 "name" : "Global Sales Dashboard",
9 "statusUrl" : "/services/data/v35.0/analytics/dashboards/01ZD00000007QevMAE/status",
10 "url" : "/services/data/v35.0/analytics/dashboards/01ZD00000007QevMAE"
11} ]