Search code examples
grafanagrafana-api

How to delete grafana dashboard using curl command?


I am trying to delete grafana dashboard using curl command, but it is not deleting, the below curl command I tried to delete the dashboard,

curl -XPOST -d '{"name":"mydashboard"}' http://localhost:3000/api/dashboards/db -u admin:admin -H "Content-Type: application/json"

Solution

  • Run the below command,

    curl -k -X DELETE -u admin:admin http://localhost:3000/api/dashboards/db/dashboardslug_name
    

    where dashboardslug_name is the name while save the dashboard and not the dashboard title displaying in the web url.