Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Is it possible to delete a table in a dataset using the REST API?
According to this post it is possible:
But the docs do not mention it, and my own attempts were unsuccesful with a 404 error.
C# code:
string url = $"https://api.powerbi.com/v1.0/myorg/datasets/{datasetId}/tables/{tableName}";
HttpWebRequest request = System.Net.WebRequest.Create(url) as System.Net.HttpWebRequest;
request.KeepAlive = true;
request.Method = "DELETE";
//Add token to the request header
request.Headers.Add("Authorization", String.Format("Bearer {0}", token));
using (var response = (HttpWebResponse)request.GetResponse()) // needed!
{
}
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 3 |