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.
Save a Dashboard with a Custom Lightning Web Component (Beta)
You can save a dashboard with a custom Lightning web component by sending a PATCH
request to the Dashboard Results resource.
Example Usage
1/services/data/v31.0/analytics/dashboards/01ZD00000007S89MAEExample Request Body
1{
2 "components": [{
3 "header": "",
4 "properties": {
5 "content": {
6 "componentParameters": "{\"componentApiName\":\"c:kpiDashboard\",\"properties\":\"{\\\"maxCards\\\":1,\\\"showProgressBars\\\":true,\\\"showSummary\\\":false}\"}"
7 },
8 "visualizationType": "LightningWebComponent"
9 },
10 "type": "Dashboard",
11 "componentData": 0
12 }]
13}Example Response Body
1components" : [{
2 "chartTheme" : null,
3 "componentData" : null,
4 "footer" : null,
5 "header" : null,
6 "id" : "01aSG0000088inFYAQ",
7 "lastModifiedDate" : "2025-12-18T05:03:56Z",
8 "properties" : {
9 "content" : {
10 "componentParameters" : "{\"componentApiName\":\"c:kpiDashboard\",\"properties\":\"{\\\"maxCards\\\":1,\\\"showProgressBars\\\":true,\\\"showSummary\\\":false}\"}"
11 },
12 "visualizationType" : "LightningWebComponent"
13 },
14 "reportId" : null,
15 "title" : null,
16 "type" : "Dashboard"
17}]