Overview
Reference
- AlertEvents
- AlertGroups
- AlertUrgencies
- AlertSources
- Alerts
- Audits
- Authorizations
- CatalogEntities
- CatalogEntityProperties
- CatalogFields
- Catalogs
- Causes
- [DEPRECATED] CustomFieldOptions
- [DEPRECATED] CustomFields
- CustomForms
- DashboardPanels
- Dashboards
- Environments
- EscalationPolicies
- EscalationLevelsPolicies
- EscalationLevelsPath
- EscalationLevels
- EscalationPaths
- FormFieldOptions
- FormFieldPlacementConditions
- FormFieldPlacements
- FormFieldPositions
- FormFields
- FormSetConditions
- FormSets
- Functionalities
- WorkflowTasks
- [DEPRECATED] WorkflowCustomFieldSelections
- WorkflowFormFieldConditions
- WorkflowGroups
- WorkflowRuns
- Workflows
- Heartbeats
- IncidentActionItems
- [DEPRECATED] IncidentCustomFieldSelections
- IncidentEventFunctionalities
- IncidentEventServices
- IncidentEvents
- IncidentFeedbacks
- IncidentFormFieldSelections
- IncidentPermissionSetBooleans
- IncidentPermissionSetResources
- IncidentPermissionSets
- IncidentRetrospectives
- IncidentRetrospectiveSteps
- IncidentRoleTasks
- IncidentRoles
- IncidentStatusPageEvents
- IncidentSubStatuses
- IncidentTypes
- Incidents
- IpRanges
- LiveCallRouters
- OnCallRoles
- OnCallShadows
- OverrideShifts
- PlaybookTasks
- Playbooks
- RetrospectiveTemplates
- Pulses
- RetrospectiveConfigurations
- RetrospectiveProcessGroupSteps
- RetrospectiveProcessGroups
- RetrospectiveProcesses
- RetrospectiveSteps
- Roles
- ScheduleRotationActiveDays
- ScheduleRotationUsers
- ScheduleRotations
- Schedules
- Shifts
- Secrets
- Services
- Severities
- StatusPageTemplates
- StatusPages
- SubStatuses
- Teams
- UserNotificationRules
- Users
- WebhooksDeliveries
- WebhooksEndpoints
DashboardPanels
Delete a dashboard panel
DashboardPanels
Delete a dashboard panel
Delete a specific dashboard panel by id
DELETE
/
v1
/
dashboard_panels
/
{id}
curl --request DELETE \
--url https://api.rootly.com/v1/dashboard_panels/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"data": {
"id": "006db794-37aa-4086-af49-4e86fc23a537",
"type": "dashboard_panels",
"attributes": {
"dashboard_id": "eedb49db-761a-4f83-b143-512ccc9f1320",
"name": "Test panel",
"params": {
"display": "line_chart",
"datasets": [
{
"collection": "incidents",
"filter": [],
"aggregate": {
"operation": "count",
"key": "results",
"cumulative": false
}
}
]
},
"position": null,
"created_at": "2025-03-13T11:59:55.750-07:00",
"updated_at": "2025-03-13T11:59:57.214-07:00",
"data": [
{
"name": "Incidents",
"color": null,
"data": {
"2025-03-06": 0,
"2025-03-07": 0,
"2025-03-08": 0,
"2025-03-09": 0,
"2025-03-10": 0,
"2025-03-11": 0,
"2025-03-12": 0,
"2025-03-13": 0
}
}
]
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/vnd.api+json
dashboard panel deleted
Unique ID of the dashboard_panel
Available options:
dashboard_panels
Available options:
line_chart
, line_stepped_chart
, column_chart
, stacked_column_chart
, monitoring_chart
, pie_chart
, table
, aggregate_value
Available options:
all
, charted
Available options:
alerts
, incidents
, incident_post_mortems
, incident_action_items
, users
The panel dashboard
The name of the dashboard_panel
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/dashboard_panels/%7Bid%7D \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
"data": {
"id": "006db794-37aa-4086-af49-4e86fc23a537",
"type": "dashboard_panels",
"attributes": {
"dashboard_id": "eedb49db-761a-4f83-b143-512ccc9f1320",
"name": "Test panel",
"params": {
"display": "line_chart",
"datasets": [
{
"collection": "incidents",
"filter": [],
"aggregate": {
"operation": "count",
"key": "results",
"cumulative": false
}
}
]
},
"position": null,
"created_at": "2025-03-13T11:59:55.750-07:00",
"updated_at": "2025-03-13T11:59:57.214-07:00",
"data": [
{
"name": "Incidents",
"color": null,
"data": {
"2025-03-06": 0,
"2025-03-07": 0,
"2025-03-08": 0,
"2025-03-09": 0,
"2025-03-10": 0,
"2025-03-11": 0,
"2025-03-12": 0,
"2025-03-13": 0
}
}
]
}
}
}