curl --request PUT \
--url https://api.octaviatech.app/cms/reports/dashboardConfig \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"version": 1,
"templateId": "executive_focus",
"slots": [
{
"id": "hero",
"type": "operationsOverview",
"enabled": true,
"span": "full",
"settings": {
"range": "1month"
}
},
{
"id": "slot_1",
"type": "contentTrend",
"enabled": true,
"span": "half",
"settings": {
"range": "1week"
}
}
]
}
'